Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Created May 18, 2018 07:51
Show Gist options
  • Save dmjcomdem/5b07b7a102ca2945c2ce32b4c86cb2f4 to your computer and use it in GitHub Desktop.
Save dmjcomdem/5b07b7a102ca2945c2ce32b4c86cb2f4 to your computer and use it in GitHub Desktop.
Get URL parameter
let getURLParameter = (name) => decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search)||[,""])[1].replace(/\+/g, '%20'))||null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment