This is my json structure http://www.jsoneditoronline.org/?id=fb2a15d2df238449142d98ad015961f9
I'm trying to loop trough results like this:
success: function(data) {
for(var i = 0; i < data.result.length; i++)
{
var product = data.result[i];
alert(product);
}
}
Then in this 'result' object I've got another Object in Object and Array, how can I get this value?

alert(product.image.large.url);