I have a div that is above something I want to showcase, and I have the setInterval
working, but the clearInterval
isn’t firing when it reaches 2 loops.
I have this:
window.setInterval(play_ani_clickthese, 3000);
var fade_count = 0;
function play_ani_clickthese() {
$("#click_these").fadeIn(1000).delay(1000).fadeOut(1000);
fade_count += parseInt('1');
if(fade_count == 2) window.clearInterval(play_ani_clickthese);
}
But when the 'fade_count' reaches 2, it just keeps going.
Any pointers to what I'm doing wrong?
I have a div that is above something I want to showcase, and I have the setInterval
working, but the clearInterval
isn’t firing when it reaches 2 loops.
I have this:
window.setInterval(play_ani_clickthese, 3000);
var fade_count = 0;
function play_ani_clickthese() {
$("#click_these").fadeIn(1000).delay(1000).fadeOut(1000);
fade_count += parseInt('1');
if(fade_count == 2) window.clearInterval(play_ani_clickthese);
}
But when the 'fade_count' reaches 2, it just keeps going.
Any pointers to what I'm doing wrong?
Share Improve this question edited Feb 28, 2013 at 11:31 franzlorenzon 5,9436 gold badges37 silver badges58 bronze badges asked Jul 30, 2011 at 22:29 DavidDavid 2,2423 gold badges31 silver badges49 bronze badges 2-
2
clearInterval
takes the ID of the interval, not a function. It is described in the documentation: developer.mozilla/En/Window.clearInterval – Felix Kling Commented Jul 30, 2011 at 22:34 - 3 clearInterval is a javascript function, not specific to the jQuery framework at all. – Lepidosteus Commented Jul 30, 2011 at 22:36
1 Answer
Reset to default 12Use it like this:
var id = window.setInterval(play_ani_clickthese, 3000);
clearInterval(id);