Skip to content

Instantly share code, notes, and snippets.

@KeithNdhlovu
Created February 6, 2017 07:05
Show Gist options
  • Save KeithNdhlovu/ced255a30ee1cfb684124e432d3639f3 to your computer and use it in GitHub Desktop.
Save KeithNdhlovu/ced255a30ee1cfb684124e432d3639f3 to your computer and use it in GitHub Desktop.
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, " "));
}
// Usage:
// query string: ?foo=lorem&bar=&baz
var foo = getParameterByName('foo'); // "lorem"
var bar = getParameterByName('bar'); // "" (present with empty value)
var baz = getParameterByName('baz'); // "" (present with no value)
var qux = getParameterByName('qux'); // null (absent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment