Hey I'm having issues with the jquery.cycle using the scrollDown fx. I'm using the following jquery + plugins and I'm pretty sure I'm just missing a plugin file... <script language="javascript" type="text/javascript" src="js/ jquery-1.2.6.js"></script> <script language="javascript" type="text/javascript" src="js/ jquery.cycle.all.js"></script> <script language="javascript" type="text/javascript" src="js/ jquery.cycle.trans.js"></script> <script language="javascript" type="text/javascript" src="js/ jquery.easing.1.1.1.js"></script>
CODE: $('#newsTicker').cycle({ fx: 'fade', timeout: 2000, delay: -2000 //fx: 'scrollDown', //sync: 0, //delay: -2000 }); The fade works fine, but when I comments out the fade and 2 other lines and uncomment the scrollDown pieces of code, nothing displays. The divs are pretty simple too: <div id="newsTicker" style="width:200px;" > <div class="news_items"> <a href="#" class="news_links">This is where the first news article will go. We will now be featuring only one article at a </a> </div> <div class="news_items"> <a href="#" class="news_links">This is where the second news article will go. We will now be featuring only one article at a </a> </div> <div class="news_items"> <a href="#" class="news_links">This is where the third news article will go. We will now be featuring only one </a> </div> </div> Live example at: http://john1.netfirms.com/VAM/news.html Any help is appreciated.