Skip to content

Instantly share code, notes, and snippets.

@screamwork
Created April 11, 2012 23:31
Show Gist options
  • Save screamwork/2363469 to your computer and use it in GitHub Desktop.
Save screamwork/2363469 to your computer and use it in GitHub Desktop.
jQuery - Get URL vars
$.extend({
getUrlVars: function(){
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('=');
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