I don't think window.clearTimeout () will do the trick.
However, the ressource identifier is just an integer. In Opera, this is 1, in FireFox 2, in IE a certain amount. Check this out with a script:
<script type="text/javascript">
var test = window.setTimeout(alert, 10000);
alert(test);
</script>
So, if it’s not possible to set a global variable for a timeout, you can simply clear the intervals for each integer from 1 to 5.000.000 or so. This, of course, is not beautiful.
- : ?