Skip to content

Instantly share code, notes, and snippets.

@vermaslal
Created December 14, 2015 09:36
Show Gist options
  • Save vermaslal/f3b7a5acc2a243e8e508 to your computer and use it in GitHub Desktop.
Save vermaslal/f3b7a5acc2a243e8e508 to your computer and use it in GitHub Desktop.
jQuery Get Query String Parameters as object
$.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[hash[0]] = hash[1];
}
return vars;
},
getUrlVar: function (name) {
return $.getUrlVars()[name];
}
});
$(function (e) {
var allVars = $.getUrlVars();
var byName = $.getUrlVar('installed');
console.log(allVars);
console.log(byName);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment