Skip to content

Instantly share code, notes, and snippets.

@KustoSan
Created May 11, 2015 14:48
Show Gist options
  • Save KustoSan/0965780564060416657e to your computer and use it in GitHub Desktop.
Save KustoSan/0965780564060416657e to your computer and use it in GitHub Desktop.
URL vars
// Get URL vars
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