Last active
December 22, 2015 08:29
-
-
Save mephraums/6445607 to your computer and use it in GitHub Desktop.
Javascript - URL Params Anonymous function Object
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 = {}; | |
(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).toLowerCase(); | |
while (match = search.exec(query)) | |
urlParams[decode(match[1])] = decode(match[2]); | |
}()); | |
//Usage urlParams['q']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment