vote up 0 vote down star

I have seen references to some browsers natively supporting JSON parsing/serialization of objects safely and efficiently via the window.JSON Object, but details are hard to come by. Can anyone point in the right direction? What are the methods this Object exposes? What browsers is it supported under?

flag

1 Answer

vote up 3 vote down check

Internet Explorer 8 and the latest beta of Firefox (to be version 3.5) support native JSON parsing, but that's it, so I wouldn't count on it.

Links:

link|flag
I know the support is not widespread, but using this method should be a lot faster and safer than eval()ing a string, so I want to use it where it's available. Any idea on support from other browsers? – levik May 21 at 3:53
I didn't say don't use it, I said don't count on it. Definitely check to see if it's available (at this point only IE8 and the few Fx Beta users) and use it if so, but I'm just saying that you shouldn't assume the browser supports it. As of now, those two are the only browsers that support it, and WebKit is working on it right now, so it'll probably be in Google Chrome and Safari sometime soon. – musicfreak May 21 at 4:00
1  
Oh, and on a side note, NEVER eval() JSON strings. Instead, use one of the many JSON parsing libraries available. – musicfreak May 21 at 4:08

Your Answer

Get an OpenID
or

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