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.
dynamictextareas.push({guideid:targeteditorID, guideitemtext : textareacontents });
alert( JSON.stringify(dynamictextareas) );

See anything wrong with this JSON2 javascript code?

For some reason this come is making a mess of things. I want to push:

<p>DDDDDD</p>

But instead it's pushing:

[{"guideid":"1","guideitemtext":"<p>\u000a\u0009u000au0009DDDDDD</p>\u000a"}]

Any ideas? Is there a better way I can build this JSON object?

share|improve this question

1 Answer

up vote 2 down vote accepted

\u000a is identical to \n (newline) and \u0009 is identical to \t (tab).

The JSON spec states that newlines and tabs must be escaped, and thats what has happened here.

If you do not want these characters serialized, then you can remove them prior to serializing e.g with a regexp.

share|improve this answer

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.