Skip to content

Instantly share code, notes, and snippets.

@jansabbe
Created June 7, 2011 08:34
Show Gist options
  • Save jansabbe/1011907 to your computer and use it in GitHub Desktop.
Save jansabbe/1011907 to your computer and use it in GitHub Desktop.
Get value of a parameter from a url in javascript
function getParameterByName(parameter, url) {
var parameterValue = RegExp("[?&]" + parameter + "=([^&]*)").exec(url);
return decodeURIComponent(parameterValue[1].replace(/\+/g, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment