Created
April 16, 2013 21:19
-
-
Save chrisdeely/5399729 to your computer and use it in GitHub Desktop.
Javascript snippet to read URL query string parameters
This file contains hidden or 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
var urlParams = {}; | |
//Parse URL parameters | |
(function () { | |
var match, | |
pl = /\+/g, // Regex for replacing addition symbol with a space | |
search = /([^&=]+)=?([^&]*)/g, | |
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); }, | |
query = window.location.search.substring(1); | |
while (match = search.exec(query)) | |
urlParams[decode(match[1])] = decode(match[2]); | |
})(); | |
console.log( urlParams.foo, urlParams.bar ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment