Created
December 21, 2011 17:33
-
-
Save cesarmiquel/1506893 to your computer and use it in GitHub Desktop.
Retrieve HTTP Get parameter from 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
/** | |
* Parse URL and retrieve a GET parameter | |
* | |
* @param variable Name of variable to retrieve from URL | |
* @returns Value of the variable or null if not present | |
* | |
* from: http://stackoverflow.com/questions/827368/use-the-get-paramater-of-the-url-in-javascript | |
*/ | |
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]; | |
} | |
} | |
return null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment