Thanks for the help. 

I am having another problem though. I'm trying to run a script to do a
fadeIn on the images that are cycling in, but I can't get it to restart by
cycling with the pager. It will start if it cycles by timing of if you wait
long enough then use the pager. 

I've tried various combinations of this code: 

$('li').click(fade);


but I've had no luck.

Any ideas?

And thanks again for the help.



malsup wrote:
> 
> 
>>                 pagerAnchorBuilder: function(idx, slide) {
>>                         return '<li> #  ' + slide.src + '  </li>'; }
>>                 })
>>                 ;
>>
>> particularly the part where it calls back in the "slide.src" . I want to
>> have it call back a different part of the slide area. Also I'm not sure
>> what
>> part I want to call. What i have for the whole image set that rotates is
>> this:
> 
> pagerAnchorBuilder gives you the slide element.  If you want to find
> the image within that slide just use the slide as context on a query:
> 
> pagerAnchorBuilder: function(idx, slide) {
>     var src = $('img',slide).attr('src');
>     return '<li> #  ' + src + '  </li>'; }
> }
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Cycle-Plugin-Pager-with-Images-tp22560095s27240p22579680.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to