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.

I want done each for json in following js code but i have error as Uncaught TypeError: Cannot read property 'length' of null and it don't work, what do i do?

json code:

[
   {
      "type_bad":"5"
   },
   {
      "type_bad":"5"
   },
   {
      "type_bad":"14"
   },
   {
      "type_bad":"6"
   },
   {
      "type_bad":"13"
   },
   {
      "type_bad":"3"
   },
   {
      "type_bad":"8"
   }
]

my js code:

$('.TypeRoom').live("change", function (e) {
    val = 'id_units=' + id + 'type_room=' + type_room;
    $.ajax({
        type: "POST",
        dataType: 'json',
        url: 'get_unitsTB',
        data: val,
        cache: false,
        success: function (units) {
            $.each(units, function (index, val) {
                alert(val.type_bad);
            });
        },
        "error": function (x, y, z) {
            // callback to run if an error occurs
            alert("An error has occured:\n" + x + "\n" + y + "\n" + z);
        }
    });
});
share|improve this question
4  
It means units is null, look at the actual response in network tab of google chrome developer tools – Esailija Dec 2 '12 at 10:35
1  
You can also try: success: function (units) { console.log(units); } to be sure that your units is actually what you expect. – Miszy Dec 2 '12 at 10:37
Yes, units is null. – Taylor Gomez Dec 2 '12 at 11:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.