

Create a feed instance that will grab Digg's feed. Var div3 = document.createElement("div") ĭiv3.appendChild(document.createTextNode(entry.publishedDate)) Var div2 = document.createElement("div") ĭiv2.appendChild(document.createTextNode(ntent)) div1.appendChild(document.createTextNode(entry.feedUrl))

Check out the result object for a list of properties returned in each entry. Loop through the feeds, putting the titles onto the page. Var container = document.getElementById("feed") Grab the container we will put the results into Our callback function, for when a feed is loaded. Also, I'm wondering if the way my code is set up (multiple DIVs/feed entry)will allow for something like vTicker to work?Īnother possible solution I found was on jsfiddle but I can't get that to work with my code, it's a bit beyond my level right now! I found some examples like vTicker but that seems to be based on lists ( ) and I'm not sure how to adapt it for a DIV. I'd like to be able to make it scroll vertically down to the bottom of the DIV and then wrap around to the top again once it hits the bottom.

I've created a rss reader using Google's Feed API and the feeds get placed into a DIV container. I'm a novice at JS/jQuery but I'd like to learn some more.
