I grab the query string parameters and try to do this:
var hello = unescape(helloQueryString);
and it returns:
this+is+the+string
instead:
this is the string
Works great if there was% 20, but that's +. Any way to decode them correctly so that they + characters move to spaces?
Thanks.
source share