Welcome to the AJAX APIs and the group. Unfortunately, it's difficult to tell you what you need to do with only this description of the symptoms. If you could provide a link to your page, whether it's working as you want it to or not, it would be extremely helpful. If this is absolutely impossible, post the entire application's code to a pasting service such as paste-it.net.
That said, if I was going to guess what's going on, I would say that you probably have the same id on both of your containing elements. You initialize the first feed, pointing it to the first div, and then you initialize the second feed. But this time, instead of pointing it to the second div, because the two elements have the same id, the browser gets confused and points it to the first div, too. So the second feed overwrites the first one. If this is the case, the solution is to adjust at least one of your element id's and the corresponding document.getElementById() call(s). Jeremy R. Geerdes Effective website design & development Des Moines, IA For more information or a project quote: http://jgeerdes.home.mchsi.com http://jgeerdes.blogspot.com http://jgeerdes.wordpress.com [email protected] Unless otherwise noted, any price quotes contained within this communication are given in US dollars. If you're in the Des Moines, IA, area, check out Debra Heights Wesleyan Church! And check out my blog, Adventures in Web Development, at http://jgeerdes.blogspot.com ! On Feb 11, 2009, at 7:20 PM, joviyach wrote: > > I just discovered the feed api, very cool... I have a couple of > questions: > > Can I have use two instances of this to pull feeds from two different > places instead of one instance pulling multiple feeds? If so, how? I > tried this by simply placing the feed script in two different sections > (<div>) but the first section started to pull the second feed, and the > div where the second feed was to be just said "Loading..." > > Also, can I format this to fit into a certain area? I notice a CSS > reference there, but it is an external reference. > > Thanks, > > Jim > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-AJAX-Search-API?hl=en -~----------~----~----~----~------~----~------~--~---
