Skip to content

Instantly share code, notes, and snippets.

@shelwinnn
Last active August 29, 2015 14:03
Show Gist options
  • Save shelwinnn/b4f4fbe2f2682cbd1154 to your computer and use it in GitHub Desktop.
Save shelwinnn/b4f4fbe2f2682cbd1154 to your computer and use it in GitHub Desktop.
url params
$.urlParam = function(name){
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
return results ? results[1] : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment