Skip to content

Instantly share code, notes, and snippets.

@jacobovidal
Last active July 12, 2017 18:31
Show Gist options
  • Save jacobovidal/c160ea2508d24b4aea95adf5b90a291b to your computer and use it in GitHub Desktop.
Save jacobovidal/c160ea2508d24b4aea95adf5b90a291b to your computer and use it in GitHub Desktop.
Get URL parameters by name in JavaScript
/**
* @param {string} name - Parameter name
* @param {string} url - URL to extract parameters from (Optional)
*/
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