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

