In the Mozilla documentation, there are some examples written with window.
in front of the timer functions and some without:
function delayedAlert() {
timeoutID = window.setTimeout(slowAlert, 2000);
}...
setTimeout(myArray.myMethod, 1000);...
window.setInterval = function (vCallback, nDelay...
I have been writing my code without window.
in front without any problem so far. I want to find out if there is any situation when it would be necessary.