Return to Snippet

Revision: 19607
at October 27, 2009 05:04 by LuckyShot


Initial Code
var t_on = function() {t_out = setTimeout(t_exe, 5000);}
var t_off = function() {clearTimeout(t_out);}
var t_exe = function() {$('.jFlowNext').click();t_on();}
$("#jFlowSlide").bind("mouseenter", function() {t_off();});
$("#jFlowSlide").bind("mouseleave", function() {t_on();});
t_on();

Initial URL


Initial Description


Initial Title
jFlow AutoTimer (and example on Timers in JavaScript and jQuery events)

Initial Tags


Initial Language
JavaScript