Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to send text in key value pairs while doing a contentType: "application/json; charset=utf-8", ajax post to a web service. The problem I am facing is that if one of the parameters (that accepts text from the user) has quotes (") it breaks the code [Eror message: Invalid object passed in ] . So far I have tried these without any success

var text = $("#txtBody").val(); 
var output1 = JSON.stringify(text); 
var output2 = text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"); 

Any ideas on how to escape the special characters for the jquery ajax post?

share|improve this question

2 Answers

up vote 6 down vote accepted

Why not use escape?

escape(text);

https://developer.mozilla.org/en/DOM/window.escape

share|improve this answer
Thank you Trevor :) – developer747 Apr 13 '12 at 13:26

There is already a function escape(var) which helps you escape the values. It should be enough for the purpose you are talking about

var output2 = escape(text);
share|improve this answer
Your answer worked for me Starx. But unfortunately they don't let me mark more than one answer. Sorry :( – developer747 Apr 13 '12 at 13:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.