Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
5  
See When can I use JSON parsing? for info on browsers with native support for the JSON object. – outis Dec 26 '11 at 9:38

4 Answers

up vote 62 down vote accepted

Internet Explorer 8+, Firefox 3.1+, Safari 4+, Chrome 3+, and Opera 10.5+ support native JSON parsing. Don't count on it being available, but if it is, definitely use it for a performance boost, as well as guaranteed security.

Links to how it works:


Edit: Updated the answer as of October 1, 2011 to make it more relevant and accurate.

share|improve this answer
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 '09 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. – Sasha Chedygov May 21 '09 at 4:00
12  
Oh, and on a side note, NEVER eval() JSON strings. Instead, use one of the many JSON parsing libraries available. – Sasha Chedygov May 21 '09 at 4:08
Of the "many" libraries available, are they any preferred? Is the one at json.org/json2.js generally the most used? I noticed references to it in jQuery 1.4 source. – curthipster Feb 6 '10 at 1:20
1  
@colbeerhey: Yeah, that's the one I see most often. You could also steal jQuery's. – Sasha Chedygov Feb 6 '10 at 8:03
show 3 more comments

jQuery-1.7.1.js - 555 line...

parseJSON: function( data ) {
    if ( typeof data !== "string" || !data ) {
        return null;
    }

    // Make sure leading/trailing whitespace is removed (IE can't handle it)
    data = jQuery.trim( data );

    // Attempt to parse using the native JSON parser first
    if ( window.JSON && window.JSON.parse ) {
        return window.JSON.parse( data );
    }

    // Make sure the incoming data is actual JSON
    // Logic borrowed from http://json.org/json2.js
    if ( rvalidchars.test( data.replace( rvalidescape, "@" )
        .replace( rvalidtokens, "]" )
        .replace( rvalidbraces, "")) ) {

        return ( new Function( "return " + data ) )();

    }
    jQuery.error( "Invalid JSON: " + data );
}





rvalidchars = /^[\],:{}\s]*$/,

rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,

rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,

rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g,
share|improve this answer
2  
Nice. Good argument to use jQuery. – OneWorld Jul 30 '12 at 16:34
1  
More like an argument to look inside jQuery =) – Olga Mar 22 at 9:42

The advantage of using json2.js is that it will only install a parser if the browser does not already have one. You can maintain compatibility with older browsers, but use the native JSON parser (which is more secure and faster) if it is available.

Browsers with Native JSON:

  • IE8+
  • Firefox 3.1+
  • Safari 4.0.3+
  • Opera 10.5+

G.

share|improve this answer

[extending musicfreak comment]

If you are using jQuery, use parseJSON

var obj = jQuery.parseJSON(data)

Internally it checks if browser supports .JSON.parse, and (if available) calls native window.JSON.parse.

If not, does parse itself.

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.