[jQuery] Cycle Plugin - Change Slides and Pause on Hover (existing Pager)
Is it possible to both change slides and pause the running slideshow
onmouseover with existing markup used as a pager? I tried to add a
"pause" action before running the slideshow, but that seems to break
the whole thing.
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!