I have the following pseudo structure.
[
{"product":
{
"id":"14",
"product_title":"My Awesome Product!",
"product_desc":"An awesome product.."
}
},
{"product":
{
"id":"15",
"product_title":"My MORE Awesome Product!",
"product_desc":"An AWESOMER product..."
}
}
]
I am iterating it like this:
$.post('Ajax.php',function(res){
res = res.pop();
$.each(res,function(product){
alert(product.product_title);
});
});
However, only the last product_title is being shown. It does not go thru all of them.
Is it my code, or my JSON structure? Thanks!
EDIT: reason for the .pop();: Reading jQuery JSON Structure - cant get it to work
.pop()? it doesn't return the array but whatever is in the last index of the array and removes it from the array – Esailija Nov 16 '11 at 11:30