Skip to content

Instantly share code, notes, and snippets.

@chrisgoddard
Created June 24, 2015 17:17
Show Gist options
  • Save chrisgoddard/d0ab6ce764a80ed38ef9 to your computer and use it in GitHub Desktop.
Save chrisgoddard/d0ab6ce764a80ed38ef9 to your computer and use it in GitHub Desktop.
function getUrlParam(url, param) {
var match = url.match('(?:\\?|&)' + param + '=([^&#]*)');
return (match && match.length == 2) ? decodeURIComponent(match[1]) : '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment