Skip to content

Instantly share code, notes, and snippets.

@Anderson-Juhasc
Created January 17, 2013 14:41
Show Gist options
  • Save Anderson-Juhasc/4556368 to your computer and use it in GitHub Desktop.
Save Anderson-Juhasc/4556368 to your computer and use it in GitHub Desktop.
function getParameterByName(name)
{
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regexS = "[\\?&]" + name + "=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.search);
if(results == null)
return "";
else
return decodeURIComponent(results[1].replace(/\+/g, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment