Skip to content

Instantly share code, notes, and snippets.

@theeluwin
Created February 4, 2014 08:55
Show Gist options
  • Select an option

  • Save theeluwin/8800225 to your computer and use it in GitHub Desktop.

Select an option

Save theeluwin/8800225 to your computer and use it in GitHub Desktop.
function get_url_params() {
var search = window.location.search.substring(1);
if(search) {
return JSON.parse('{"' + decodeURI(search.replace(/"/g, '\\"')).replace(/&/g, '","').replace(/=/g,'":"') + '"}');
} else {
return {};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment