Last active
February 27, 2017 15:28
-
-
Save reifman/4651687 to your computer and use it in GitHub Desktop.
Javascript to parse query string variables from URL
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
<script> | |
function getQueryVariable(variable) { | |
var query = window.location.search.substring(1); | |
var vars = query.split("&"); | |
for (var i=0;i<vars.length;i++) { | |
var pair = vars[i].split("="); | |
if (pair[0] == variable) { | |
return pair[1]; | |
} | |
} | |
alert('Query Variable ' + variable + ' not found'); | |
} | |
</script> | |
// To test, make a request to page.html?x=Hello | |
<script> | |
alert( getQueryVariable(“x”) ); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I couldn't get the first variable after the '?'
e.g.:
URL:
http://127.0.0.1/video.html?play=file.mp4&testvar=12345
pair
play=file.mp4
was undetectablepair
testvar=12345
wasso I used the following to include the '?'