Skip to content

Instantly share code, notes, and snippets.

@ek
Created March 12, 2016 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ek/6e6c80bda40011fe3710 to your computer and use it in GitHub Desktop.
Save ek/6e6c80bda40011fe3710 to your computer and use it in GitHub Desktop.
Extract a variable from window.location query string
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(false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment