I have this set
var data = [
    {"outlet_name":"Easy Lane Supermart","20130102_20130108":"0"},
    {"outlet_name":"Eunilaine Foodmart Kalayaan","20130102_20130108":"0"},
    {"outlet_name":"PUREGOLD PRICE CLUB, INC - VISAYAS","20130102_20130108":"0"}
];
$.each(data, function (i, item) {
    $.each(item, function (k,v) {
        $('#result').append(k,v);
    });
});
How can I make it only view all the values of outlet_name without using the item.outlet_name?
 
     
     
     
    