ループする単純な関数があります。ユーザーのアクションに基づいて、それを殺してから再実行したいと思います。それを行う最善の方法が何であるかはわかりません。
これが私が持っているものです:
function loopor(){
$slider.next();
setTimeout(loopor, 3000);
}
そして、これが私がする必要があることです:
$('#thing').click(function(event){
event.preventDefault();
var thing = $(this);
/* help here */
magicKillLooporFunction();
/* end help*/
thing.animate({
height: '100%'
}, function({
loopor();
});
});