$.ajax({ type: 'GET', url: 'feed.xml', dataType: 'xml', success: function (xml) { var titles = $(xml).find("title") root.feedTitle.text = titles[0].textContent; $(xml).find("item").each(function () { $item = $(this); var item = new Object(); item.title = $item.find("title").text(); item.date = $item.find("pubDate").text(); item.description = $item.find("description").text(); item.link = $item.find("link").text(); feedItems.push(item); }); } }); DETAILS RENDERER FRAME 1: this.stop(); DETAILS RENDERER FRAME 15: this.stop();