Skip to content

Instantly share code, notes, and snippets.

@julienchazal
Created March 16, 2016 11:08
Show Gist options
  • Save julienchazal/452915f8c5a7ec95d5dc to your computer and use it in GitHub Desktop.
Save julienchazal/452915f8c5a7ec95d5dc to your computer and use it in GitHub Desktop.
get URL parameter function
function getURLParameter(url, param) {
return decodeURIComponent((new RegExp('[?|&]' + param + '=' + '([^&;]+?)(&|#|;|$)').exec(url)||[,""])[1].replace(/\+/g, '%20'))||null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment