Skip to content

Instantly share code, notes, and snippets.

@iolo
Created May 21, 2015 02:32
Show Gist options
  • Save iolo/86ee0c2231e92d857e87 to your computer and use it in GitHub Desktop.
Save iolo/86ee0c2231e92d857e87 to your computer and use it in GitHub Desktop.
parse query string on browser
function parseQueryString() {
return location.search.substring(1).split('&')
.map(function(s){
return s.split('=');
})
.reduce(function (r, x) {
r[x[0]] = x[1];
return r;
}, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment