I have this set
var data = [
{\"outlet_name\":\"Easy Lane Supermart\",\"20130102_20130108\":\"0\"},
{\"outlet_name\":\"Eunilaine Foodmart Kalayaan\",
$.each(data, function (i, item) {
console.log(item.outlet_name);
});
Or without jQuery:
for (var i=0;i
Ok, if you want to iterate over each object you can write:
$.each(data, function (i, item) {
console.log("Values in object " + i + ":");
$.each(item, function(key, value) {
console.log(key + " = " + value);
});
});