> $('#gastroThumbs').cycle({ > fx: 'fade', > speed: 500, > timeout: 0, > next: '#next', > pager: '#thumbNav' > }), > $('#gastroBilder').cycle({ > fx: 'fade', > speed: 500, > timeout: 0, > next: '#next', > pager: '#thumbNav' > }); > > > can anybody help, please?!
I would expect to see two sets of anchors with the code above. I'd recommend doing something like this for the 2nd slideshow so that the same set of pager links are used: pager: '#thumbNav', pagerAnchorBuilder: function(idx, slide) { // return selector string for existing anchor return '#thumbNav a:eq(' + idx + ')'; } Mike