Skip to content

Instantly share code, notes, and snippets.

@internoma
Last active August 29, 2015 14:07
Show Gist options
  • Save internoma/8297bfb9480abfb3292b to your computer and use it in GitHub Desktop.
Save internoma/8297bfb9480abfb3292b to your computer and use it in GitHub Desktop.
Javascript URL getParameterByName
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