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.

Here is my json response:

[{"durum":"1"},{"durum":"2"},{"durum":"3"}]

My jquery function:

      $("select#durum").change(function(){
          $.post("autocomplete/ara_detay",{durum: $(this).val()}, function(j){
              var events = j; 
              var event = events[0];                  
              alert(j.length);
              alert(j.durum);
              alert(j.durum);
              var options = '';
              for (var i = 0; i < j.length; i++) {
                  options += '<option value="' + j[i].durum + '">' + j[i].durum + '</option>';
              }
              $("#durum").html(options);
          })      })

j.length alert says "43" and other alert messages says "undefined".

In which part am i doing wrong ?

share|improve this question
1  
have you checked in the console what was actually in j? and BTW, you can't use event as a variable name. – Joseph the Dreamer Feb 18 '12 at 8:35

1 Answer

up vote 1 down vote accepted

j is a string

var jsonParsed = JSON.parse(j);
alert(jsonParsed[0].durum);
alert(jsonParsed[1].durum);
alert(jsonParsed[2].durum);
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.