Skip to content

Instantly share code, notes, and snippets.

@DejaAugustine
Created May 30, 2013 17:37
Show Gist options
  • Save DejaAugustine/5679685 to your computer and use it in GitHub Desktop.
Save DejaAugustine/5679685 to your computer and use it in GitHub Desktop.
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
// assuming a url along the lines of:
// http://www.example.com/index.html?action=win
var action = getParameterByName("action");
if(action && action == "win") {
// You've won!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment