Did you make sure that each instance of the RSS ticker invocation code on your page contains a unique variable name? For example:
Code:
<script type="text/javascript">
var showbbc=new rssdisplaybox("bbc", "bbcdiv", "someclass")
showbbc.set_items_shown(10) //show 10 entries from feed
showbbc.start() //Required: start script
</script>
<script type="text/javascript">
var showcnn=new rssdisplaybox("bbc", "cnndiv", "someclass")
showcnn.set_items_shown(10) //show 10 entries from feed
showcnn.start() //Required: start script
</script>
The code in red is what I'm referring to as far as unique variable name. Notice the name in orange- they too must be unique, as they correspond to the ID of the generated DIV that will contain each RSS feed instance.
Bookmarks