Skip to content

Instantly share code, notes, and snippets.

@townivan
Last active July 28, 2017 17:46
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 townivan/5acad71d12e613d607368e873b488751 to your computer and use it in GitHub Desktop.
Save townivan/5acad71d12e613d607368e873b488751 to your computer and use it in GitHub Desktop.
JS get query string
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, " "));
}
var param = getParameterByName("color");
// myurl?color=red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment