Hey all, I'm having a little trouble parsing data properly from the YouTube API. I'm in the process of learning Javascript, so more than likely I'm missing something stupid, my theory is that it's with the way the YouTube API formats it's .json file. Here's my Jscript: Code: $.getJSON("https://gdata.youtube.com/feeds/api/users/WhtRook/uploads?alt=json&max-results=3", function(data) { var post = ""; $.each(data.feed.entry, function(i,item){ post = "" ...