I'm trying to load 3 separate feeds and have them display in separate divs on the same page. Any way to do this?
<script type="text/javascript">
/* How to use the Feed Control to grab, parse and display feeds. */
google.load("feeds", "1", {'nocss' : 1});
function OnLoad() {
// Create a feed control
var feedControl = new google.feeds.FeedControl();
feedControl.setNumEntries(25);
// Add feeds.
feedControl.setLinkTarget("_blank");
// Draw it.
feedControl.draw(document.getElementById("articles"));
}
google.setOnLoadCallback(OnLoad);
</script>