Skip to content

Instantly share code, notes, and snippets.

@leplay
Forked from anonymous/getParameterByName.js
Created September 12, 2016 06:15
Show Gist options
  • Save leplay/7fae9b2297b04642ac045c63fa512436 to your computer and use it in GitHub Desktop.
Save leplay/7fae9b2297b04642ac045c63fa512436 to your computer and use it in GitHub Desktop.
// http://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment