Previous answers are mostly technically correct but don't actually illustrate what the problem being solved is. It looks longish but is actually very simple and straightforward - I just made it very detailed.
Imagine a web app with a "do something" button and a result div.
The onClick handler for "do something" button calls a function "LongCalc", which does 2 things:
Makes a very long calculation (say takes 3 min)
Prints the results of calculation into the result div.
Now, your users start testing this, click "do something" button, and the page sits there doing seemingly nothing for 3 minutes, they get restless, click the button again, wait 1 min, nothing happens, click button again...
The problem is obvious - you want a "Status" DIV, which shows what's going on. Let's see how that works.
So you add a "Status" DIV (initially empty), and modify the onlcick handler (function "LongCalc") to do 4 things:
Populate the status "Calculating... may take ~3 minutes" into status DIV
Makes a very long calculation (say takes 3 min)
Prints the results of calculation into the result div.
Populate the status "Calculation done" into status DIV
And, you happily give the app to users to re-test.
They come back to you looking very angry. And explain that when they clicked the button, the Status DIV never got updated with "Calculating..." status!!!
You scratch you head, ask around on StackOverflow (or read docs or google), and realize the problem:
The browser places all its "TODO" tasks (both UI tasks and JavaScript commands) resulting from events into a single queue. And unfortunately, re-drawing the "Status" DIV with the new "Calculating..." value is a separate TODO which goes to the end of the queue!
Here's a breakdown of the events during your user's test, contents of the queue after each event:
- Queue: [Empty]
- Event: Click the button. Queue after event: [Execute OnClick handler(lines 1-4)]
- Event: Execute first line in Onclick handler (e.g. change Status DIV vaue). Queue after event: [Execute OnClick handler(lines 2-4), re-draw Status DIV with new "Calculating" value]. Please note that while the DOM changes happen instantaneously, to re-draw the corresponding DOM element you need a new event, triggered by the DOM change, that went at the end of the queue.
- PROBLEM!!! *PROBLEM!!!* Details explained below.
- Event: Execute second line in handler (calulation). Queue after: [Execute OnClick handler(lines 3-4), re-draw Status DIV with "Calculating" value].
- Event: Execute 3d line in handler (populate result DIV). Queue after: [Execute OnClick handler(line 4), re-draw Status DIV with "Calculating" value, re-draw result DIV with result].
- Event: Execute 4th line in handler (populate status DIV with "DONE"). Queue: [Execute OnClick handler, re-draw Status DIV with "Calculating" value, re-draw result DIV with result; re-draw Status DIV with "DONE" value].
- Event (fake): onclick sub finished. We take the "Execute OnClick handler" off the queue and start executing next item on the queue.
- NOTE: Since we already finished the calculation, 3 minutes already passed for the user. The re-draw event didn't happen yet!!!
- Event: re-draw Status DIV with "Calculating" value. We do the re-draw and take that off the queue.
- Event: re-draw Result DIV with result value. We do the re-draw and take that off the queue.
- Event: re-draw Status DIV with "Done" value. We do the re-draw and take that off the queue.
Sharp-eyed viewers might even notice "Status DIV with "Calculating" value flashing for fraction of a microsecond - AFTER THE CALCULATION FINISHED
So, the underlying problem is that the re-draw event for "Status" DIV is placed on the queue at the end, AFTER the "execute line 2" event which takes 3 mins, so the actual re-draw doesn't happen until AFTER the calculation is done.
To the rescue comes the setTimeout(). How does it help? Because by calling long-executing code via setTimeout, you actually create 2 events: setTimeout execution itself, and (due to 0 timeout), the code being executed.
So, to fix your problem, you modify your onClick handler to be TWO statements (in a new function or just a block within onClick):
Populate the status "Calculating... may take ~3 minutes" into status DIV
Execute setTimeout with 0 timeout which calls "LongCalc" function. LongCalc function is almost the same as last time but obviously doesn't have "Calculating..." Status DIV update as first step, and instead starts the calculation right away.
So, what does the event sequence and the queue look like now?
- Queue: [Empty]
- Event: Click the button. Queue after event: [Execute OnClick handler(status update, setTimeout call)]
- Event: Execute first line in Onclick handler (e.g. change Status DIV value). Queue after event: [Execute OnClick handler(setTimeout call), re-draw Status DIV with new "Calculating" value].
- Event: Execute second line in handler (setTimeout call). Queue after: [re-draw Status DIV with "Calculating" value]. The queue has nothing new in it for 0 more seconds.
- Event: Alarm from the timeout goes off, 0 seconds later. Queue after: [re-draw Status DIV with "Calculating" value, execute LongCalc (lines 1-3)].
- Event: re-draw Status DIV with "Calculating" value. Queue after: [execute LongCalc (lines 1-3)]. Please note that this re-draw event might actually happen BEFORE the alarm goes off, which works just as well.
- ...
Hoorray! The Statis DIV just got updated to "Calculating..." before the calculation started!!!