Skip to content

Instantly share code, notes, and snippets.

@kaioe
Last active September 8, 2018 06:13
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save kaioe/8401201 to your computer and use it in GitHub Desktop.
Save kaioe/8401201 to your computer and use it in GitHub Desktop.
Javascript: getUrlVars
function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
hash[1] = unescape(hash[1]);
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
var urlVars = getUrlVars();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment