Skip to content

Instantly share code, notes, and snippets.

@marydn
Created June 12, 2017 09:01
Show Gist options
  • Save marydn/661e6f6c3c9350ff763677250dff9b86 to your computer and use it in GitHub Desktop.
Save marydn/661e6f6c3c9350ff763677250dff9b86 to your computer and use it in GitHub Desktop.
Get query params using 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