Skip to content

Instantly share code, notes, and snippets.

@fazlurr
Last active August 7, 2018 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fazlurr/3548eb10aaf7ccbbc7c3a3536585c8d8 to your computer and use it in GitHub Desktop.
Save fazlurr/3548eb10aaf7ccbbc7c3a3536585c8d8 to your computer and use it in GitHub Desktop.
Get URL Parameter by Name - https://stackoverflow.com/a/901144/5627904
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, ' '));
}
// 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