Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Created July 21, 2014 14:15
Show Gist options
  • Save philsinatra/8446e85afc205361e6da to your computer and use it in GitHub Desktop.
Save philsinatra/8446e85afc205361e6da to your computer and use it in GitHub Desktop.
Extract and return a URL parameter
function getURLParameter(name) {
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.href);
if(results==null)
return '';
else
return results[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment