Possible Duplicate:
Convert JS object to JSON string
I have a JSON object in JS, and I would like to convert it to string. Is it a function for this?
Thanks in advance,
I have a JSON object in JS, and I would like to convert it to string. Is it a function for this? Thanks in advance, |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
||||
|
|
|
You can use the JSON
There is pretty good support for this across the board when it comes to browsers, as shown on http://caniuse.com/#search=JSON. You will note, however, that versions of IE earlier than 8 do not support this functionality natively. If you wish to cater to those users as well you will need a shim. Douglas Crockford has provided his own JSON Parser on github. |
|||||||
|
{"foo":"bar"}– Danny Fox Apr 22 '12 at 15:56