I\'m using the Cycle plugin for use in a news-rotator. This means I\'m using Div\'s to populate the slides instead of images.
My ultimate goal is to make a pager whe
I have tried with this, and worked:
$(function() { $('#featured .container').before('').cycle({ fx: 'scrollLeft', speed: 300, timeout: 5000, next: '.next', prev: '.previous', pager: '#nav', pagerAnchorBuilder: function(idx, slide) { var img = $(slide).children('.thumb').children().eq(0).attr("src"); return ''; } });
Sougata