Created
April 4, 2014 13:51
-
-
Save baniol/9975161 to your computer and use it in GitHub Desktop.
jquery, querystring, plugin, url
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
// 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