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.

jQuery.parseJSON('{"name":"John"}') converts string representation to object but I want the reverse. Object is to be converted to JSON string I got a link http://www.devcurry.com/2010/03/convert-javascript-object-to-json.html but it need to have json2.js do jQuery has a native method to do this?

share|improve this question

3 Answers

up vote 47 down vote accepted

jQuery does only make some regexp checking before calling the native browser method window.JSON.parse(). If that is not available, it uses eval() or more exactly new Function() to create a Javascript object.

The opposite of JSON.parse() is JSON.stringify() which kind of "deserializes" a Javascript object into a string. jQuery does not have functionality of its own for that, you have to use the browser built-in version or json2.js from http://www.json.org

JSON.stringify() is available in all major browsers, but to be compatible with older browsers you still need that fallback.

share|improve this answer
2  
this may be helpful: var theObject = (typeof data == "string") ? jQuery.parseJSON(data) : data; – roberthuttinger Mar 5 '12 at 19:52
1  
JSON.stringify() isn't available in current (v 21.0.1180) or, I assume, past versions of Chrome so 'all major browsers' is a bit off. – Molomby Sep 5 '12 at 2:35
1  
@tekretic: I hope you're trolling. Chrome implements the JSON host object since day 1. – jAndy Sep 5 '12 at 10:18
1  
@jAndy: Oh wow, sorry. Not trolling but OH so wrong. Turns out native JSON support was added to WebKit in mid 2009, making it supported since Chrome 3.0. My previous, totaly inaccurate comment was based on a half of this outdated question combined with the CMS I'm working on at the moment which actually replaces window.JSON with its own library, meaning JSON.stringify() isn't defined. Quite a fail on all counts. – Molomby Sep 7 '12 at 2:21
3  
For those interested, here's a nice chart of native JSON support in different browsers. – Molomby Sep 7 '12 at 2:23

Also useful is Object.toSource() for debugging purposes, where you want to show the object and its properties for debugging purposes. This is a generic Javascript (not jQuery) function, however it only works in "modern" browsers.

share|improve this answer

You can use the excellent jquery-Json plugin:

http://code.google.com/p/jquery-json/

Makes it easy to convert to and from Json objects.

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.