Skip to content

Instantly share code, notes, and snippets.

@kindy
Created September 24, 2012 14:29
Show Gist options
  • Save kindy/3776222 to your computer and use it in GitHub Desktop.
Save kindy/3776222 to your computer and use it in GitHub Desktop.
var args = {};
(location.search || '').replace(/^\?/, '').replace(/([^&=]*)(?:=([^&]*))?/g, function(m, k, v) {
if (v) {
args[k] = decodeURIComponent(v);
}
return '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment