Skip to content

Instantly share code, notes, and snippets.

@renews
Created November 25, 2014 16:42
Show Gist options
  • Save renews/3ce42aa2c9584d884446 to your computer and use it in GitHub Desktop.
Save renews/3ce42aa2c9584d884446 to your computer and use it in GitHub Desktop.
Get url parameter - js
function gup( 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