Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aloha1003/9d144d6de4530ab417499c14cc5f76af to your computer and use it in GitHub Desktop.
Save aloha1003/9d144d6de4530ab417499c14cc5f76af to your computer and use it in GitHub Desktop.
js parse location query
var search = location.search.substring(1);
JSON.parse('{"' + decodeURI(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g,'":"') + '"}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment