I have a script that I believe is refusing to clear the interval. I
prefer to do the troubleshooting myself as part of the learning
process, but have been unable to find a way of checking the current
interval value.
I'd like to be able to validate the setting and clearing of the
interval. Something like:
a = setInterval('so meFunction()', someInterval);
interval_set = getInterval(a);
clearInterval(a );
interval_cleare d = getInterval(a);
Unfortunately getInterval doesn't exist. Any ideas?
Any ideas?
prefer to do the troubleshooting myself as part of the learning
process, but have been unable to find a way of checking the current
interval value.
I'd like to be able to validate the setting and clearing of the
interval. Something like:
a = setInterval('so meFunction()', someInterval);
interval_set = getInterval(a);
clearInterval(a );
interval_cleare d = getInterval(a);
Unfortunately getInterval doesn't exist. Any ideas?
Any ideas?
Comment