$.getJSON('http://23.21.128.153:3000/api/v1/holidays', function(data){
alert("this: " + data.holiday[0].name);
});
I’m trying to access the “name” attribute of the first element of my JSON response but without success, can anyone tell me what I’m doing wrong.
Try this:
The
datalooks like this:So, you need to select the first element from the main array (
data[0]), then get itsholidayproperty (data[0].holiday), and then get itsnameproperty.