Skip to content

Instantly share code, notes, and snippets.

@chancesmith
Created April 27, 2016 18:15
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 chancesmith/db6a5112097de1dd503ba562afbdae41 to your computer and use it in GitHub Desktop.
Save chancesmith/db6a5112097de1dd503ba562afbdae41 to your computer and use it in GitHub Desktop.
Get variable from URL - javascript
function getUrlVar(q) {
return (window.location.search.match(new RegExp('[?&]' + q + '=([^&]+)')) || [, null])[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment