Is it possible to both use existing elements for the pager, and to change as well as pause on hover? Currently the slides change on hover as expected, but the slideshow continues to run.
Here's my code: $('#front-image').cycle({ speed: 1, timeout: 2000, pager: '#homenav', pagerEvent: 'mouseover', pagerAnchorBuilder: function(idx, slide) { // return sel string for existing anchor return '#homenav li:eq(' + (idx) + ') a'; } }); }); Thanks in advance!