Skip to content

Instantly share code, notes, and snippets.

@darshilv
Created April 5, 2017 17:56
Show Gist options
  • Save darshilv/1d79c835d0487880f1a70bb9417379bc to your computer and use it in GitHub Desktop.
Save darshilv/1d79c835d0487880f1a70bb9417379bc to your computer and use it in GitHub Desktop.
function to get query parameters from url using vanilla 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, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment