| I was hoping someone could help me with figuring out how to post rss to my website. I want to post news headlines from Google news, cnn, yahoo etc about jobs etc to my website. I found this code which does a nice job, but I would like more posts - it only adds 4 posts from the rss how do I change that number? any ideas? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Google AJAX Search API Sample</title> <script src="http://www.google.com/jsapi?key=ABQIAAAA1XbMiDxx_BTCY2_F................"></script> <script type="text/javascript"> /* * How to use the Feed Control to grab, parse and display feeds. */ google.load("feeds", "1"); function OnLoad() { // Create a feed control var feedControl = new google.feeds.FeedControl(); // Add two feeds. feedControl.addFeed("http://news.google.com/news?pz=1&ned=us&hl=en&q=jobs&output=rss", "Google"); feedControl.addFeed("http://rss.cnn.com/rss/money_latest.rss", "CNN"); // Draw it. feedControl.draw(document.getElementById("content")); } google.setOnLoadCallback(OnLoad); </script> </head> <body style="font-family: Arial;border: 0 none;"> <div id="content">Loading...</div> </body> </html>
|