Created
August 11, 2011 23:05
-
-
Save remy/1141024 to your computer and use it in GitHub Desktop.
Get location.search as object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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