Skip to content

Instantly share code, notes, and snippets.

@adrianmoses
Last active November 15, 2015 06:09
Show Gist options
  • Save adrianmoses/69f244030ad96e8862f7 to your computer and use it in GitHub Desktop.
Save adrianmoses/69f244030ad96e8862f7 to your computer and use it in GitHub Desktop.
window.location.getParams = function() {
var params = {};
var paramList = window.location.search.slice(1).split('&');
paramList.forEach(function(param, index, list){
params[param.split('=')[0]] = param.split('=')[1];
});
return params;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment