Here is my object that I want to parse through:
my.test = [{"Customer":
{
"id":"123",
"Name":"john"
}
}]
I have this already:
$.each(Cmy.test, function(index, value) {
$.each(value.Customer, function(innerIndex, innerValue) {
alert('File ' + innerValue.id + ' in customer ' + index);
});
});
But my alert() shows undefined for value. What am I doing wrong?