vote up 7 vote down star
3

Does jQuery have built in JSON support or must I use a plugin like jquery.json-1.3.min.js ?

flag

2  
Encoding or decoding? – Daniel A. White Aug 11 at 14:31
I don't see how this is programming related? – geejay Aug 11 at 15:11
6  
@geejay you don't? jquery is javascript, AJAX, json, all those are very programming related I think. – jasondavis Aug 11 at 15:18
community wiki for sure – geejay Aug 11 at 16:58
1  
@geejay - a yes/no programming question should be community wiki? C'mon! – karim79 Aug 11 at 17:38

3 Answers

vote up 6 vote down check

You can also use $.ajax and set the dataType option to "json":

 $.ajax({
      url: "script.php",
      global: false,
      type: "POST",
      data: ({id : this.getAttribute('id')}),
      dataType: "json",
      success: function(json){
         alert(json.foo);
      }
   }
);

Also, $.get and $.post have an optional fourth parameter that allows you to set the data type of the response, e.g.:

$.postJSON = function(url, data, callback) {
    $.post(url, data, callback, "json");
};

$.getJSON = function(url, data, callback) {
    $.get(url, data, callback, "json");
};
link|flag
1  
this is the way I am trying to do it actually, I am getting a json response from an ajax call so this is perfect for my situation! – jasondavis Aug 11 at 14:42
vote up 8 vote down

Yes, absolutely it does. You can do something like:

$.getJSON('/foo/bar/json-returning-script.php', function(data) {
    // data is the JSON object returned from the script.
});
link|flag
1  
thanks this is good to know, in my situation karim79's response is the way I need to do it though. +1 I wonder why they have a plugin for json if it is built in!? – jasondavis Aug 11 at 14:44
vote up 0 vote down

jQuery's JSON support is simplistic, throwing caution to the wind. I've used $.ajax and then parse the response text with the json.org javascript library. It lexically parses to avoid using eval() and possibly executing arbitrary code.

link|flag
1  
the reccomended json2.js from json.org actually does use eval. It just has some complicated sanitization code run through the json source first. There's a lexical parser as fallback, but it runs much slower, by all accounts. – Breton Aug 11 at 15:19
Thanks for the clarification. – spoulson Aug 11 at 16:22

Your Answer

Get an OpenID
or

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