I have gone through most of the code here and tried several ways to get clearInterval to work and for some reason it is just not working, although it is a basic and simple problem.
Here is the code and I want to know WHY it isn't working, not just get the code done for me.
var myTimer;
function startTimer() {
myTimer = window.setInterval( function() {
$('#randomImage').fadeTo('slow',0.0).addClass("changeBg_" + current);
var current = Math.round(Math.random() * 4) + 1;
$('#randomImage').fadeTo('slow',1.0).addClass("changeBg_" + current);
}, 5000);
};
function stopTimer(){
window.clearInterval(myTimer);
$('#randomImage').fadeTo('slow',0.0);
}
Thanks In Advance from a Newbie...
I have gone through most of the code here and tried several ways to get clearInterval to work and for some reason it is just not working, although it is a basic and simple problem.
Here is the code and I want to know WHY it isn't working, not just get the code done for me.
var myTimer;
function startTimer() {
myTimer = window.setInterval( function() {
$('#randomImage').fadeTo('slow',0.0).addClass("changeBg_" + current);
var current = Math.round(Math.random() * 4) + 1;
$('#randomImage').fadeTo('slow',1.0).addClass("changeBg_" + current);
}, 5000);
};
function stopTimer(){
window.clearInterval(myTimer);
$('#randomImage').fadeTo('slow',0.0);
}
Thanks In Advance from a Newbie...
Share Improve this question edited Jul 29, 2012 at 3:43 Barlas Apaydin 7,31511 gold badges58 silver badges88 bronze badges asked Apr 1, 2011 at 18:37 user688079user688079 3- 1 And what is it supposed to do? What do you mean by not working? – Jakub Hampl Commented Apr 1, 2011 at 18:41
- starTimer() rotates css classes randomly every 5 seconds and stopTimer() should clear the setInterval put in startTimer() but it does not stop the setInterval. – user688079 Commented Apr 1, 2011 at 18:47
-
And are you sure the problem isn't somewhere else? Is
stopTimer
even being called? – Jakub Hampl Commented Apr 1, 2011 at 18:52
1 Answer
Reset to default 6Your code is fine, it works perfectly. It must be a problem with the code calling it. Check out this fiddle.
var myTimer;
function startTimer() {
myTimer = window.setInterval( function() {
$('#randomImage').fadeTo('slow',0.0).addClass("changeBg_" + current);
var current = Math.round(Math.random() * 4) + 1;
$('#randomImage').fadeTo('slow',1.0).addClass("changeBg_" + current);
}, 5000);
};
function stopTimer(){
window.clearInterval(myTimer);
$('#randomImage').fadeTo('slow',0.0);
}
startTimer();
$('#randomImage').click(function() { stopTimer(); });