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 am trying to retrieve json data using jquery ajax.

alert(data.EntryList.Entry.FirstName) //This returns undefined

I am trying to get the value of first name, last name etc.

Here is the code looks like

$.ajax({
        url: "",
        context: document.body,
        type: "GET",
        dataType: "jsonp",
        success: function(data) {


            console.log(data);

            alert(data.EntryList.Entry.FirstName)

        }


}); //Ajax End​

Console log screenshot below

enter image description here

share|improve this question

3 Answers

up vote 2 down vote accepted

In addition to what others have said you could also use $.map() or $.each() functions that JQuery provides to iterate over arrays.

var entries = data.EntryList.Entry;
$.each(entries, function(index,entry) {
  console.log(entry.FirstName);
});

or

var entries = data.EntryList.Entry;
$.map(entries, function(entry,index) {
  console.log(entry.FirstName);
});

And also data.EntryList[i].Entry.FirstName is an object . So alert may not be doing what you intend it to do. You should alert data.EntryList[i].Entry.FirstName.value

share|improve this answer
what is the index for? – Dips Jun 20 '12 at 0:20
Index is the index of the element entry in the array entries – tarashish Jun 20 '12 at 6:45
Oh I see, Thanks – Dips Jun 20 '12 at 6:55

try alert(data.EntryList.Entry[0].FirstName) as EntryList.Entry is an array

share|improve this answer

data.EntryList.Entry is an array.

var entries = data.EntryList.Entry;
for (var i = 0, l = entries.length; i < l; i++) {
  console.log(entries[i].FirstName.value);
  console.log(entries[i].LastName.value);
}
share|improve this answer
Thanks mate, this works perfectly – Dips Jun 19 '12 at 7:22
@Dips Glad to help :) – xdazz Jun 19 '12 at 7:40

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.