All those setTimeout answers here don't work!
I just want to wait a few seconds between two functions, like this:
do_fn1();
wait(5000);
do_fn2();
|
All those setTimeout answers here don't work! I just want to wait a few seconds between two functions, like this:
|
|||
|
From phpied.com:
|
|||||||||||||||||||
|
|
I don't think you can. You'll probably have to
|
|||||||
|
|
Two thoughts: first of all why not wrap up all of the post delay statements into a wrapper function
then in your code pass this function as the parameter to setTimeout.
Alternatively take a look at jQuery deferred: http://msdn.microsoft.com/en-us/scriptjunkie/gg723713, although you will probably end up writing very similar code. One thing struck me though about your responses to other answers and possibly where the confusion arises. I think you are looking at your function and seeing a single thread you just want to hold up for a while before carrying on. You should not do this though in javascript as it ties up the entire browser and will annoy the hell out of users. Instead what you are in effect doing when you use setTimeout, is indicating that when the timeout expires another thread will pick up and execute the passed in function. As soon as the timeout has been set, the executing thread will continue with the next line (which is why you think the timeout isn't working). What you probably need to do, is set the timeout, and put ALL the post-execution steps into the function handed off to the timer as indicated above. |
||||
|
|
|
Saying they all don't work without an example is big call because I'm sure they probably do. How about this,
|
|||
|
|
Of course they do:
|
|||
|
|
|
Another hack I will probably use, however personally I would not recommend it.
|
||||
|
|
|
The smartest way would be to have something like
Never "block" any Threads in JS - if you think you have to do there is definately a "cleaner" way to do achieve your aim. |
|||
|
|
setTimeoutdoesn't work whilst posting an example thatsetTimeoutwould be absolutely perfect for seems somewhat counter productive (hence all the answers just telling you to use it). Perhaps you should improve your question to show exactly what you need to do and why you can't do it withsetTimeout? – Andy E Jun 26 '11 at 13:54