-
-
Save beau-gosse/0492cd8e7d9d96bb7f5646f1355e4058 to your computer and use it in GitHub Desktop.
jQuery - Get URL vars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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