Skip to content

Instantly share code, notes, and snippets.

@saltukalakus
Created October 23, 2016 18:12
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 saltukalakus/940e46e8deeea94865c1a9d747a6cad6 to your computer and use it in GitHub Desktop.
Save saltukalakus/940e46e8deeea94865c1a9d747a6cad6 to your computer and use it in GitHub Desktop.
Helper to get a querystring value.
/*
* Helper to get a querystring value.
*/
function getParameterByName( 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 decodeURIComponent(results[1].replace(/\+/g, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment