Last active
September 30, 2015 08:39
-
-
Save ETiV/36e0ed6daf49088142c0 to your computer and use it in GitHub Desktop.
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 parseQueryString(qs) { | |
qs = qs.replace(/\+/g, ' '); | |
var params = {}, tokens, | |
re = /[?&]:?([^=]+)=([^&]*)/g; | |
while (tokens = re.exec(qs)) { | |
// console.log(tokens); | |
params[decodeURIComponent(tokens[1])] | |
= decodeURIComponent(tokens[2]); | |
} | |
return params; | |
} | |
var qs = parseQueryString(window.location.search); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment