That worked.  Thanks!

On Sep 9, 8:23 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
> > The goal is to have a cycle that runs along with a pager.  The pager
> > is custom and works on hover.  Additionally, I want the cycle to pause
> > while you're hovering on a pager item, and resume once you've left.
> > This code appears to work correctly, but it occasionally says paused
> > or if you mouseover a second pager while the first is fading in it
> > stays paused on the first.
>
> You may want to try the 'fastOnEvent' option.  It let's the
> transitions occur immediately to avoid the problem you described.
>
> http://www.malsup.com/jquery/cycle/pager10.html
>
> > (And as an aside, in some of the advanced samples, it uses a .before
> > or .after, eghttp://malsup.com/jquery/cycle/pager2.html-I don't
> > quite get what's going on there.)  Thanks!
>
> The .before() and .after() calls are just adding elements to the DOM
> dynamically (using jQuery core methods).  So in code like this:
>
> $('#slideshow').before('<ul id="nav">').cycle({
>     pager:  '#nav'
>
> });
>
> I'm dynamically adding a #nav div before the slideshow and then using
> it as pager container.
>
> Mike

Reply via email to