Skip to content

Instantly share code, notes, and snippets.

@nimacks
Created May 30, 2014 04:54
Show Gist options
  • Save nimacks/d983137d79bd9bd6558d to your computer and use it in GitHub Desktop.
Save nimacks/d983137d79bd9bd6558d to your computer and use it in GitHub Desktop.
How to retrieve query string values in javascript
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, " "));}
Usage:
var prodId = getParameterByName('prodId');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment