Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've recently run into a rather nasty bug, wherein the code was loading a <select> dynamically via JavaScript. This dynamically loaded <select> had a pre-selected value. In IE6, we already had code to fix the selected <option>, because sometimes the <select>'s selectedIndex value would be out of sync with the selected <option>'s index attribute, as below:

field.selectedIndex = element.index;

However, this code wasn't working. Even though the field's selectedIndex was being set correctly, the wrong index would end up being selected. However, if I stuck an alert() statement in at the right time, the correct option would be selected. Thinking this might be some sort of timing issue, I tried something random that I'd seen in code before:

var wrapFn = (function() {
    var myField = field;
    var myElement = element;

    return function() {
        myField.selectedIndex = myElement.index;
    }
})();
setTimeout(wrapFn, 0);

And this worked!

I've got a solution for my problem, but I'm uneasy that I don't know exactly why this fixes my problem. Does anyone have an official explanation? What browser issue am I avoiding by calling my function "later" using setTimeout()?

share|improve this question
2  
(In Chrome) sometimes it helps to show css transitions. – erenon Aug 14 '11 at 18:11
@erenon I'll second that, I've had issues with transitions using old CSS values, except my solution was to get a value which is known to cause a page flow, for example $("element-selector").offset().left; – Andy Mar 30 '12 at 13:41
This is all about how browsers handle your code (JS and CSS). Watch this video to learn more. youtube.com/watch?v=9rizDPIIYEY&feature=plcp – Mohsen Dec 6 '12 at 19:45
You can add an onreadystatechange to the new element instead. – QuentinUK Mar 22 at 22:55

8 Answers

up vote 129 down vote accepted

This works because you're doing co-operative multi-tasking.

A browser has to do a number of things pretty much all at once, and just one of those is execute JavaScript. But one of the things JavaScript is very often used for is to ask the browser to build a display element. This is often assumed to be done synchronously (particularly as JavaScript is not executed in parallel) but there is no guarantee this is the case and JavaScript does not have a well-defined mechanism for waiting.

The solution is to "pause" the JavaScript execution to let the rendering threads catch up. And this is what setTimeout() with a timeout of 0 does. It is like a thread/process yield in C. Although it seems to say "run this immediately" it actually gives the browser a chance to finish doing some none-JavaScript things that have been waiting to finish before attending to this new piece of JavaScript.

IE6 just happens to be more prone to this error, but I have seen it occur on older versions of Mozilla and in FireFox.

share|improve this answer
1  
great explanation, thanks! – Kirk Strobeck Apr 24 '12 at 21:58
27  
'The solution is to "pause" the JavaScript execution to let the rendering threads catch up.' Not entirely true, what setTimeout does is add a new event to the browser event queue and the rendering engine is already in that queue (not entirely true, but close enough) so it gets executed before the setTimeout event. – David Mulder Jun 4 '12 at 14:30

Take a look at John Resig's article about How JavaScript Timers Work. When you set a timeout, it actually queues the asynchronous code until the engine executes the current call stack.

share|improve this answer

setTimeout() buys you some time until the DOM elements are loaded, even if is set to 0.

Check this out: setTimeout

share|improve this answer
6  
+1, Also worth noting that trying to understand every little 'hack' that's necessary to get things to work in IE6 is probably one of the most futile tasks in the world of web development :) – karim79 Apr 22 '09 at 21:54

The other thing this does is push the function invocation to the bottom of the stack, preventing a stack overflow if you are recursively calling a function. This has the effect of a while loop but lets the JavaScript engine fire other asynchronous timers.

share|improve this answer

Today 2013 most browsers have a single process called main UI thread that is responsible for perform JavaScript and user interface updates which include painting, redraw and reflow.

Every JavaScript execution and UI updates tasks will be added to something like a browser event queue system, which dispatches those tasks to the browser main UI Thread.

When you generate new UI updates while the UI thread is busy, (maybe is doing something like performing JavaScript), then those UI updates will be pushed into the UI queue system responsible for dispatch the tasks to the UI thread when it is idle.

SetTimeout 0 is a little bit tricky; you are saying add this task to the UI queue system after 0 milliseconds delay.

share|improve this answer

By calling setTimeout you give the page time to react to the whatever the user is doing. This is particularly helpful for functions run during page load.

share|improve this answer

Some other cases where setTimeout is useful:

You want to break a long-running loop or calculation into smaller components so that the browser doesn't appear to 'freeze' or say "Script on page is busy".

You want to disable a form submit button when clicked, but if you disable the button in the onClick handler the form will not be submitted. setTimeout with a time of zero does the trick, allowing the event to end, the form to begin submitting, then your button can be disabled.

share|improve this answer
1  
Disabling would be better done in the onsubmit event; it would be faster and is guaranteed to be called before the form is technically submitted since you can stop the submission. – Kris Jan 6 at 9:36

The answers about execution loops and rendering the DOM before some other code completes are correct. Zero second timeouts in JavaScript help make the code pseudo-multithreaded, even though it is not.

I want to add that the BEST value for a cross browser / cross platform zero-second timeout in JavaScript is actually about 20 milliseconds instead of 0 (zero), because many mobile browsers can't register timeouts smaller than 20 milliseconds due to clock limitations on AMD chips.

Also, long-running processes that do not involve DOM manipulation should be sent to Web Workers now, as they provide true multithreaded execution of JavaScript.

share|improve this answer
1  
I am a little skeptical about your answer, but upvoted it because it forced me to do some additional research on browser standards. When researching standards, I go to where I always go, MDN: developer.mozilla.org/en-US/docs/Web/API/window.setTimeout HTML5 spec says 4ms. It doesn't say anything about clock limitations on mobile chips. Having a hard time googling for a source of info to back up your statements. Did find out Dart Language by Google removed setTimeout altogether in favor of a Timer object. – John Zabroski May 19 at 14:58
(...) because many mobile browsers can't register timeouts smaller than 20 milliseconds due to clock limitations (...) Every platform has timing limitations due to its clock and no platform is capable of executing the next thing exactly 0ms after the current one. Timeout of 0ms asks for execution of a function as soon as possible and timing limitations of specific platform does not change the meaning of this in any way. – Piotr Dobrogost May 30 at 20:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.