Skip to content

Instantly share code, notes, and snippets.

@abrahamfast
Created August 2, 2016 11:22
Show Gist options
  • Save abrahamfast/627c5b96e66cc674b5b04d3fa8fb1707 to your computer and use it in GitHub Desktop.
Save abrahamfast/627c5b96e66cc674b5b04d3fa8fb1707 to your computer and use it in GitHub Desktop.
get Parameter By Name java script native
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