Hello.
How can I replace the space with a plus? Is there a str_replace
in jQuery?
var blabla='бла бла';
at
var blabla='бла+бла';
I do this to insert it into the browser string
history.pushState(null, null, 'http://' + window.location.host + '/ ' + blabla);
but it turns out in the browser line instead of% 20 spaces.
Thank.