Quote Originally Posted by mojito View Post
mike to the rescue again for the second time this week.

I had exactly the same problem as visualPix..

i was seting an interval and clearing it after it had done its job but if the setting was done faster than the clearing then the clearing doesnt clear even though it has exactly the same refs.

the brute force method killed the bugger.
-------------------------
for (var a = 0; a<=100; a++) {
clearInterval(a);
}
-------------------------


mojito
That helped me! THanks. I wish there was another way of stopping the interval not using brute force...