Skip to content

Instantly share code, notes, and snippets.

@Sysetup
Created March 17, 2018 03:17
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 Sysetup/666bca06f0c1723206c1ae8ee5d60292 to your computer and use it in GitHub Desktop.
Save Sysetup/666bca06f0c1723206c1ae8ee5d60292 to your computer and use it in GitHub Desktop.
Get var from an URL. JavaScript
function getQueryVariable(variable){
var query = window.location.search.substring(1);
try {
query = decodeURI(query);
} catch(e) {
console.error(e);
}
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);
}
var name = getQueryVariable("n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment