I have the following json as seen below. I\'m trying to read the values TOP1, TOP2. I\'m a little unsure of how to do this.
I\'m using the following .. But that just
It looks like you want to loop though the .actions, so change this:
$.each(data, function(entryIndex, entry) {
var html = '- ';
});
To this:
$.each(data.actions, function(entryIndex, entry) {
var html = '- ' + this.action + '
';
});
Using data.actions you're now looping through that array of objects, and those objects are the ones with the .action property, for example: "TOP1" and "TOP2".