Hello, I have the following code:
// pull in json feed and inject panes into page $.getJSON("http://www.pomona.edu/dev/home/spotlight.json", function(data){ $.each(data.items, function(i,item){ $('<div class=\"pane\"></div>').appendTo('#spotlight-panes'); }); }); and I cannot figure out what is going wrong. As you can see, I am not even trying to do anything yet with the json data, but assuming that I should still be seeing some divs injected into the DOM. Wondering if there is something wrong with my JSON file? Any help is appreciated...I just can't figure out what is going on! Code in effect here: http://pomona.edu/dev/home/index.asp Thanks,