Skip to content

Instantly share code, notes, and snippets.

@bobbydank
Last active January 19, 2023 21:35
Show Gist options
  • Save bobbydank/0da3c48d10d98a492533ed4f594749f7 to your computer and use it in GitHub Desktop.
Save bobbydank/0da3c48d10d98a492533ed4f594749f7 to your computer and use it in GitHub Desktop.
How to get GET vars in url with js
/*
Simple script that gets GET vars from the url in javascript
*/
function _getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++) {
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
let $_GET = _getUrlVars();
console.log($_GET['somevar']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment