Skip to content

Instantly share code, notes, and snippets.

@theswedishdev
Last active August 24, 2017 08:40
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 theswedishdev/2dde29725b536f9e46dfc2b795bedf32 to your computer and use it in GitHub Desktop.
Save theswedishdev/2dde29725b536f9e46dfc2b795bedf32 to your computer and use it in GitHub Desktop.
function getURLparams() {
var vars = {};
var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) {
vars[key] = value;
});
return vars;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment