[ad_1]
i am dealing with an API Data table and want to call for example the images from all products but these products are in a row 0, 1, 2, 3, 4 and cell 0, 1, 2, 3, 4 etc.
How can i call all of them at once? With this code i could call every row but not every cell afterwards.
$.each(data, function(ix, obj) {
var image = data.obj.cells.product.image.file;
$('#image').append('<div class="col-xs-4 col-md-1"><img src="'+ image +'"/></div>');
});
[ad_2]