‹‹ cycle homejQuery Cycle Plugin - Instant Resume Demo

This demo shows how the instant resume functionality works. Simply pass a second argument to cycle with a value of true and the next transition will occur immediately.

$('#s1').cycle();
$('#pauseButton').click(function() {
    $('#s1').cycle('pause');
});
$('#resumeButton').click(function() {
    $('#s1').cycle('resume', true);
});