Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Created June 5, 2020 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yanknudtskov/c8957e4ab2197f425bfb091f04cf8058 to your computer and use it in GitHub Desktop.
Save yanknudtskov/c8957e4ab2197f425bfb091f04cf8058 to your computer and use it in GitHub Desktop.
Get Query parameter with JavaScript (JS)
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