Skip to content

Instantly share code, notes, and snippets.

@ferronrsmith
Created August 8, 2014 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferronrsmith/9abb77e3d59497f1218c to your computer and use it in GitHub Desktop.
Save ferronrsmith/9abb77e3d59497f1218c to your computer and use it in GitHub Desktop.
query string to map
// execute on ready state
jQuery.extend({
getQueryParameters : function (str) {
return (str || document.location.search).replace(/(^\?)/, '').split("&").map(function (n) {
return n = n.split("="), this[n[0]] = n[1], this
}.bind({}))[0];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment