Skip to content

Instantly share code, notes, and snippets.

@baniol
Created April 4, 2014 13:51
Show Gist options
  • Save baniol/9975161 to your computer and use it in GitHub Desktop.
Save baniol/9975161 to your computer and use it in GitHub Desktop.
jquery, querystring, plugin, url
// from: http://stackoverflow.com/a/7731878
$.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];
}
});
//Second call with this:
// Get object of URL parameters
var allVars = $.getUrlVars();
// Getting URL var by its nam
var byName = $.getUrlVar('name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment