I\'m new to JQuery and any help would be much appreciated.
\"Using $.getJSON function, retrieve the data in the items.json file provided and display the images in a
Try this:
$.getJSON('items.json', function(data) { $.each(data.items, function(i,f) { $("ul").append("URL: "+f.url+"Caption: "+f.caption+""); }); });