Skip to content

Instantly share code, notes, and snippets.

@beau-gosse
Forked from screamwork/jQuery - Get URL vars
Last active December 30, 2017 06:34
Show Gist options
  • Save beau-gosse/0492cd8e7d9d96bb7f5646f1355e4058 to your computer and use it in GitHub Desktop.
Save beau-gosse/0492cd8e7d9d96bb7f5646f1355e4058 to your computer and use it in GitHub Desktop.
jQuery - Get URL vars
$.extend({
getUrlVars: function(){
var vars = [], hash;
var url = window.location.href;
var url_enc = encodeURIComponent(url);
var url_dec = decodeURIComponent(url_enc);
var hashes = url_dec.slice(url_dec.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
},
getUrlVar: function(name){
return $.getUrlVars()[name];
}
});
/* USAGE */
// Get object of URL parameters
var allVars = $.getUrlVars();
// Getting URL var by its name
var byName = $.getUrlVar('name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment