Skip to content

Instantly share code, notes, and snippets.

@remy
Created August 11, 2011 23:05
Show Gist options
  • Save remy/1141024 to your computer and use it in GitHub Desktop.
Save remy/1141024 to your computer and use it in GitHub Desktop.
Get location.search as object
function getQuery(s) {
var query = {};
s.replace(/\b([^&=]*)=([^&=]*)\b/g, function (m, a, d) {
if (typeof query[a] != 'undefined') {
query[a] += ',' + d;
} else {
query[a] = d;
}
});
return query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment