> I have a question, i'm using innerFade (http://medienfreunde.com/lab/ > innerfade/) to fade a number of images, I would actually prefer to use > Cycle (http://www.malsup.com/jquery/cycle/) but for some reason it > does not work with Drupal 5??. > > Anyway innerFade do work, but I need to specify a delay before it > changes images the first time. I can see that cycle has this feature > (delay: 0, // additional delay (in ms) for first transition (hint: > can be negative)). > > Does anybody here know how one could create this feature to > innerFade ? > > Or > > Does anybody have Cycle running with Drupal/Jquery ?
Can't you just delay when you start innerFade? Instead of starting it immediately, start it on a timeout? $(document).ready(function() { function startFade() { $('#slideshow').innerFade(); }; setTimeout(startFade, 5000); }); Also, if you can post a link to a page where Cycle is not working I will tell you why. I'm not aware of any incompatibilities with anything. Mike