Skip to content

Instantly share code, notes, and snippets.

@hhsnopek
Created June 8, 2015 00:29
Show Gist options
  • Save hhsnopek/d42b86aa729d98b3ac24 to your computer and use it in GitHub Desktop.
Save hhsnopek/d42b86aa729d98b3ac24 to your computer and use it in GitHub Desktop.
URL Parse
var url = "",
obj = {};
url = window.location.href.split('?')[1].split('&');
for (var u = 0; u < url.length; u++) {
var items = url[u].split('=')
obj[items[0]] = unescape(items[1]);
};
console.log(obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment