Skip to content

Instantly share code, notes, and snippets.

@megantaylor
Created July 18, 2014 21:33
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 megantaylor/7a00e17c658b05a6716c to your computer and use it in GitHub Desktop.
Save megantaylor/7a00e17c658b05a6716c to your computer and use it in GitHub Desktop.
Get URL parameters
$.urlParam = function(name){
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
if (!results) { return 0; }
return results[1] || 0;
}
//http://snipplr.com/view/26662
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment