Skip to content

Instantly share code, notes, and snippets.

@brianmriley
Last active December 18, 2015 15:39
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 brianmriley/5805989 to your computer and use it in GitHub Desktop.
Save brianmriley/5805989 to your computer and use it in GitHub Desktop.
Simple method for parsing query params from a URL into a hash object.
/**
* Creates a hash object of all the URL query string params.
*
* @returns {{}}
*/
function getUrlVars() {
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