Skip to content

Instantly share code, notes, and snippets.

@mofas
Created January 6, 2015 02:58
Show Gist options
  • Save mofas/947e69d17d696387abc0 to your computer and use it in GitHub Desktop.
Save mofas/947e69d17d696387abc0 to your computer and use it in GitHub Desktop.
function queryStringMapping(){
var paramStr = window.location.href.split("?")[1].split("&");
var paramsMap = new Object() , key , value;
for(var i in paramStr){
key = paramStr[i].split("=")[0];
value = decodeURI(paramStr[i].split("=")[1]);
paramsMap[key] = value;
}
return paramsMap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment