The slideshow can be stoped by:
$(this).cycle('stop');
Or it can be paused by:
$(this).cycle('pause');
But how can I stop/pause the slideshow and return to the first slide at the same time?
The slideshow can be stoped by:
$(this).cycle('stop');
Or it can be paused by:
$(this).cycle('pause');
But how can I stop/pause the slideshow and return to the first slide at the same time?
just define it eg:
$(this).cycle('stop').cycle({
startingSlide: 1
});
Goto Starting Slide
$('#goto1').click(function() {
$('#s1').cycle(0);
return false;
});