Skip to content

Instantly share code, notes, and snippets.

@LeonardoCiaccio
Created April 23, 2017 17:26
Show Gist options
  • Save LeonardoCiaccio/7eb65e6b0285264be35302825fd8a220 to your computer and use it in GitHub Desktop.
Save LeonardoCiaccio/7eb65e6b0285264be35302825fd8a220 to your computer and use it in GitHub Desktop.
var params = "?q=Hello World&c=Awesome";
params = "{\"" +
params
.replace( /\?/gi, "" )
.replace( /\&/gi, "\",\"" )
.replace( /\=/gi, "\":\"" ) +
"\"}";
params = JSON.parse( params );
alert( decodeURIComponent( params.q ) );
alert( decodeURIComponent( params.c ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment