Last active
July 8, 2020 19:11
-
-
Save youngchief-btw/77935ebf80eb03118979bfb4af46e7f1 to your computer and use it in GitHub Desktop.
Get URL Parameters in JS
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
function getUrlVars() { | |
var vars = {}; | |
var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function( | |
m, | |
key, | |
value | |
) { | |
vars[key] = value; | |
}); | |
return vars; | |
} | |
// getUrlVars()["x"]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
UseFulVars = {...[1]}