Skip to content

Instantly share code, notes, and snippets.

@cvieth
Last active December 14, 2015 05:29
Show Gist options
  • Save cvieth/5035588 to your computer and use it in GitHub Desktop.
Save cvieth/5035588 to your computer and use it in GitHub Desktop.
Javascript GET Snippet
(function(){
var s = window.location.search.substring(1).split('&');
if(!s.length) return;
window.$_GET = {};
for(var i = 0; i < s.length; i++) {
var parts = s[i].split('=');
window.$_GET[unescape(parts[0])] = unescape(parts[1]);
}
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment