json_encode check array
by Rey Den Nalasa
JavaScript
var test_array = {"1":{"id":"1","name":"Mandurriao Branch","code":"123","phone":"112233","address1":"Mandurriao","address2":"","city":"Iloilo","postcode":"5000","country":"Philippines","state":"iloilo"},"2":{"id":"2","name":"Jaro Branch","code":"j-123","phone":"12233","address1":"Jaro","address2":"","city":"Iloilo","postcode":"5000","country":"Philippines","state":"iloilo"}};
$.each( test_array, function( key, value ) {
alert( key + ": " + value['id'] );
//$.each( value, function( key1, value1 ) {
//alert( key1 + ": " + value1 );
//});
});