I use AJAX and send string someString to php-handler
xmlHttp.open("POST", url, true);
var someString = 'Foo+Bar';
var params = 'operation='+operation+'&json='+JSON.stringify(someString);
xmlHttp.send(params);
If someString contains '+' it replacing with space. As I could read, it is normal work of JSON.stringify, but how can I get pluses (using JS only)?
The second question is what other symbols replacing by JSON.stringify?