jQuery cycle pager repeating itself
-
I’ve seen this issue a few other times on other forums, but there aren’t answers to the posts.
I’ve tried everything I can, but can’t make the double pager image go away. I have 3 images in the slider, but there are 6 pager buttons.
Here is my code:
// Showcase cycler jQuery(function() { jQuery.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { jQuery(pager).find('a').removeClass('active') .filter('a:eq('+currSlideIndex+')').addClass('active'); }; jQuery('.showcase .textwidget').cycle({ fx: 'fade', speed: 'slow', timeout: 5500, pause: 1, pauseOnPagerHover: true, pager: '#showcase-menu', pagerAnchorBuilder: function(idx, slide) { return '<a href="#"> </a></li>'; } }); });
The #showcase-menu id has an image set to the background, just fyi.
I am using a widget for the menu.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘jQuery cycle pager repeating itself’ is closed to new replies.