Im trying to loop through a json files\' object array to access its variables\' keys and values and append them to list items using jquery\'s getjson and each.
I th
$.getJSON('data/file.json', function(data){ $.each(data,function(idx, obj){ $.each(obj, function(key, value){ console.log(key + ": " + value); }); }); });