up vote 69 down vote favorite
17
share [g+] share [fb]

Is any better way than this function to make a sleep in javascript, or should I just use that function? (taken from here)

function pausecomp(millis)
 {
  var date = new Date();
  var curDate = null;
  do { curDate = new Date(); }
  while(curDate-date < millis);
}

This is not a dupe of http://stackoverflow.com/questions/758688/sleep-in-javascript I want a real sleep in a middle of a function, not a delay for a piece of code;

link|improve this question

5  
I think the best practice is use to use setTimeout. May I ask why you want "a real sleep"? – KClough Jun 4 '09 at 14:43
29  
This is a horrible solution - you're going to be chewing up processing cycles while doing nothing. – 17 of 26 Jun 4 '09 at 14:47
51  
In its defense, I'll say that the pausecomp() function is well-named, as in PAUSE THE ENTIRE FREAKING COMPUTER. – chaos Jun 4 '09 at 14:58
5  
We're treating this as if busy while loops crash computers which they don't. Computers can and do run multiple processes all the time. That's why I can be on stackoverflow while my code is compiling, because even though VS is churning, I can still do other things. It's not a good solution he's presenting, but its' not the end of the world. – DevinB Jun 4 '09 at 15:26
8  
I can think of a good reason to use a sleep function in JS. If you're attempting to simulate a slow browser experience then this can be helpful in development. – nutcracker Apr 23 '11 at 3:37
show 6 more comments
feedback

18 Answers

up vote 67 down vote accepted

In JavaScript, I rewrite every function so that it can end as soon as possible. You want the browser back in control so it can make your DOM changes.

Every time I've wanted a sleep in the middle of my function, I refactored to use a setTimeout().

link|improve this answer
this solution doesn't work if you have any state variables. If the function you're trying to sleep has any parameters. For example, how can one do fuction foobar(el){ setTimeout(foobar_cont(el),5000); } ??? I haven't figured that out yet. – David Dombrowsky Mar 16 '10 at 20:34
37  
By way of closure. function foobar(el) { setTimeout(function() { foobar_cont(el); }, 5000); } – chaos Apr 8 '10 at 3:27
5  
ok, and what if the code is not intended to be used in a webpage? – Eugenio Miró Jul 22 '10 at 15:23
@chaos: the function foobar_con takes the value of el at the moment of invocation of function foobar_con, but not unfortunately of the function foobar. Good example is a loop where el is changing: all the delayed function invocations of foobar_con will be with the maximal value of el. – Tim Jan 26 '11 at 7:36
1  
@EugenioMiró if the code is not intended to be used in a webpage, have the host's object model implement a sleep method. -- I think the question is geared towards the DOM which is exposed to javascript running on web pages. – BrainSlugs83 Sep 24 '11 at 0:57
show 3 more comments
feedback

For the love of $DEITY please do not make a busy-wait sleep function. setTimeout and setInterval do everything you need.

link|improve this answer
7  
I agree. Wouldn't a real "sleep" freeze up the whole javascript engine... – Skurmedel Jun 4 '09 at 14:46
2  
Well not quite everything: setInterval does a much better impression of polling. – annakata Jun 4 '09 at 14:48
1  
I sometimes miss a real "sleep", but messing around with setTimeout is still better than actively waiting (like the above while loop). A real sleep function does however not need to freeze the JavaScript engine, but a busy-wait would max out a single CPU core. (And eat up precious battery time of mobile users) – wvdschel Jun 4 '09 at 14:51
2  
What would that piece of code not hold back in the JavaScript engine? – Deniz Dogan Jun 4 '09 at 14:51
8  
+1 for $DEITY in your answer – barfoon Apr 8 '11 at 20:38
show 4 more comments
feedback

I agree with the other posters, a busy sleep is just a bad idea.

However, setTimeout does not hold up execution, it executes the next line of the function immediately after the timeout is SET, not after the timeout expires, so that does not accomplish the same task that a sleep would accomplish.

The way to do it is to breakdown your function in to before and after parts.

function doStuff()
{
  //do some things
  setTimeout(continueExecution, 10000) //wait ten seconds before continuing
}

function continueExecution()
{
   //finish doing things after the pause
}

Make sure your function names still accurately describe what each piece is doing (I.E. GatherInputThenWait and CheckInput, rather than funcPart1 and funcPart2)

Edit

This method achieves the purpose of not executing the lines of code you decide until AFTER your timeout, while still returning control back to the client PC to execute whatever else it has queued up.

Further Edit

As pointed out in the comments this will absolutely NOT WORK in a loop. You could do some fancy (ugly) hacking to make it work in a loop, but in general that will just make for disastrous spaghetti code.

link|improve this answer
2  
Yeah. Where this gets tricky is when you have a loop, or a nested loop even. You have to abandon your for loops and have counters instead. – Nosredna Jun 4 '09 at 15:10
Touché. I mean, it would still be possible, but ugly and hackish in that case. You could also use some static boolean state variables, but that's also pretty hackish. – DevinB Jun 4 '09 at 15:20
Any time I have to do it, I comment heavily. JavaScript is meant to run as an event handler, and the pieces are supposed to execute quickly. Making a computation-intensive RIA in JavaScript is certainly possible, but you have to give a lot of time to the browser or your UI gets sluggish. IE, of course, is the worst. – Nosredna Jun 4 '09 at 15:57
In the example at the bottom of this blog post, I use variables attached to the function to hold the current progress. dreaminginjavascript.wordpress.com/2008/08/02/… – Nosredna Jun 4 '09 at 16:00
feedback

If you're using jQuery, someone actually created a "delay" plugin that's nothing more than a wrapper for setTimeout:

// Delay Plugin for jQuery
// - http://www.evanbot.com
// - © 2008 Evan Byrne

jQuery.fn.delay = function(time,func){
    this.each(function(){
    	setTimeout(func,time);
    });

    return this;
};

You can then just use it in a row of function calls as expected:

$('#warning')
.addClass('highlight')
.delay(1000)
.removeClass('highlight');
link|improve this answer
1  
That's not a bad solution. Keeps context and chainability. – Nosredna Jun 10 '09 at 19:00
As of jQuery 1.4, .delay() is part of jQuery (though with semantics different from the above implementation). api.jquery.com/delay – MДΓΓ БДLL Oct 24 '11 at 13:26
feedback

You can't do a sleep like that in JavaScript, or, rather, you shouldn't. Running a sleep or a while loop will cause the user's browser to hang until the loop is done.

Use a timer, as specified in the link you referenced.

link|improve this answer
feedback

Tons of bullshit(right answers, but absolutely not about subject) and explanations of what you are really looking for, in comments. :) I've searched for sleep soluton too(not for real project for now, only tests) and found this article: http://narayanraman.blogspot.com/2005/12/javascript-sleep-or-wait.html And another link with client-side solutions: http://www.devcheater.com/ Looks good. Also when you are calling alert(), your code will be paused too, while alert is shown -- need to find a way to not display alert but get the same effect. :)

link|improve this answer
feedback

First:

Define a function you want to execute like this:

function alertWorld(){
  alert("Hello World");
}

Then schedule its execution with the setTimeout method:

setTimeout(alertWorld,1000)

Note two things

  • the second argument is time in miliseconds
  • as a first argument you have to pass just the name (reference) of the function, without the parenthesis
link|improve this answer
feedback

I have searched/googled quite a few webpages on javascript sleep/wait... and there is NO answer if you want javascript to "RUN, DELAY, RUN"... what most people got was either, "RUN, RUN(useless stuff), RUN" or "RUN, RUN + delayed RUN"....

So I ate some burgers and got thinking::: here is a solution that works... but you have to chop up your running codes...::: yes, I know, this is just an easier to read refactoring... still...

//......................................... //example1:

<html>
<body>
<div id="id1">DISPLAY</div>

<script>
//javascript sleep by "therealdealsince1982"; copyrighted 2009
//setInterval
var i = 0;

function run() {
    //pieces of codes to run
    if (i==0){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" is ran</p>"; }
    if (i==1){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" is ran</p>"; }
    if (i==2){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" is ran</p>"; }
    if (i >2){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" is ran</p>"; }
    if (i==5){document.getElementById("id1").innerHTML= "<p>all code segment finished running</p>"; clearInterval(t); } //end interval, stops run
    i++; //segment of code finished running, next...
}

run();
t=setInterval("run()",1000);

</script>
</body>
</html>

//.................................... //example2:

<html>
<body>
<div id="id1">DISPLAY</div>

<script>
//javascript sleep by "therealdealsince1982"; copyrighted 2009
//setTimeout
var i = 0;

function run() {
    //pieces of codes to run, can use switch statement
    if (i==0){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" ran</p>"; sleep(1000);}
    if (i==1){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" ran</p>"; sleep(2000);}
    if (i==2){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" ran</p>"; sleep(3000);}
    if (i==3){document.getElementById("id1").innerHTML= "<p>code segment "+ i +" ran</p>";} //stops automatically
    i++;
}

function sleep(dur) {t=setTimeout("run()",dur);} //starts flow control again after dur

run(); //starts
</script>
</body>
</html>

//................. example3:

<html>
<body>
<div id="id1">DISPLAY</div>

<script>
//javascript sleep by "therealdealsince1982"; copyrighted 2009
//setTimeout
var i = 0;

function flow() {
    run(i);
    i++; //code segment finished running, increment i; can put elsewhere
    sleep(1000);
    if (i==5) {clearTimeout(t);} //stops flow, must be after sleep()
}

function run(segment) {
    //pieces of codes to run, can use switch statement
    if (segment==0){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
    if (segment==1){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
    if (segment==2){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
    if (segment >2){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
}

function sleep(dur) {t=setTimeout("flow()",dur);} //starts flow control again after dur

flow(); //starts flow
</script>
</body>
</html>

//.............. example4:

<html>
<body>
<div id="id1">DISPLAY</div>

<script>
//javascript sleep by "therealdealsince1982"; copyrighted 2009
//setTimeout, switch
var i = 0;

function flow() {
    switch(i)
    {
    	case 0:
    		run(i);
    		sleep(1000);
    		break;
    	case 1:
    		run(i);
    		sleep(2000);
    		break;
    	case 5:
    		run(i);
    		clearTimeout(t); //stops flow
    		break;
    	default:
    		run(i);
    		sleep(3000);
    		break;
    }
}

function run(segment) {
    //pieces of codes to run, can use switch statement
    if (segment==0){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
    if (segment==1){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
    if (segment==2){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
    if (segment >2){document.getElementById("id1").innerHTML= "<p>code segment "+ segment +" is ran</p>"; }
    i++; //current segment of code finished running, next...
}

function sleep(dur) {t=setTimeout("flow()",dur);} //starts flow control again after dur

flow(); //starts flow control for first time...
</script>
</body>
</html>
link|improve this answer
Ok, this works with setTimeput, but it's hard to see what's happening. Using setTimeout itself is easier than this. – naugtur Aug 9 '11 at 8:19
feedback

I think it's perfectly reasonable to want to perform an action, wait, then perform another action. If you are used to writing in multi-threaded languages you probably have the idea of yielding execution for a set amount of time until your thread wakes up.

The issue here is that JavaScript is a single-thread event-based model. While in a specific case, it might be nice to have the whole engine wait for a few seconds, in general it is bad practice. Suppose I wanted to make use of your functions while writing my own? When I called your method, my methods would all freeze up. I JavaScript could somehow preserve your functions execution context, store it somewhere then bring it back and continue later, then sleep could happen, but that would basically be threading.

So you are pretty much stuck with what others have suggested -- you'll need to break your code up into multiple functions.

Your question is a bit of a false choice, then. There is no way to sleep in the way you want, neither should you pursue the solution you suggest.

link|improve this answer
feedback

This is really not a good idea, doing something like this would cause the entire page to freeze up while the system waited for your function to return.

link|improve this answer
Javascript is not just for webpages but a complete languaje that might be used with wscript for example. -1 for you – Eugenio Miró Jul 22 '10 at 15:22
feedback

For the specific case of wanting to space out a set of calls being executed by a loop, you can use something like the code below with prototype. Without prototype, you can substitute the delay function with setTimeout.

function itemHandler(item)
{
    alert(item);
}

var itemSet = ['a','b','c'];

// Each call to itemHandler will execute
// 1 second apart
for(var i=0; i<itemSet.length; i++)
{
    var secondsUntilExecution = i;
    itemHandler.delay(secondsUntilExecution, item)
}
link|improve this answer
feedback

I can understand the purpose of a sleep function if you have to deal with synchronous execution. The setInterval and setTimeout functions create a parallel execution thread which returns the execution sequence back to the main program, which is ineffective if you have to wait for a given result. Of course one may use events and handlers, but in some cases is not what is intended.

link|improve this answer
feedback

Better solution to make things look like what most people want is to use an anonymous function:

alert('start');
var a = 'foo';
//lots of code
setTimeout(function(){  //Beginning of code that should run AFTER the timeout
    alert(a);
    //lots more code
},5000);  // put the timeout here

This is probably the closest you'll get to something that simply does what you want.

Note, if you need multiple sleeps this can get ugly in a hurry and you might actually need to rethink your design.

link|improve this answer
feedback

First of all - setTimeout and setInterval is what should be used, because of javascript's callback-ish nature. If you want to use sleep() it's the control flow or the architecture of your code that is incorrect.

Having said that I suppose I still can help with two implementation of a sleep.

  1. faking synchronous run off the top of my head:

    //a module to do taht //dual-license: MIT or WTF [you can use it anyhow and leave my nickname in a comment if you want to]
    var _=(function(){
     var queue=[];
     var play=function(){
       var go=queue.shift();
         if(go){if(go.a){go.f();play();}else{setTimeout(play,go.t);}}
       }
     return {
       go:function(f){
        queue.push({a:1,f:f});
        },
       sleep:function(t){
        queue.push({a:0,t:t});
        },
       playback:play 
     }
    })();
    

    [making playback automatic should also be possible]

    //usage
    
    _.go(function(){
    
    //your code
    console.log('first');
    
    });
    
    
    _.sleep(5000);
    
    _.go(function(){
    
    //your code
    console.log('next');
    
    });
    
    //this triggers the simulation
    _.playback();
    
  2. real synchronous run

I gave it a lot of thought one day and the only idea I had for a true sleep in javascript is technical.

a sleep function would have to be a synchronous AJAX call with a timeout set to the sleep value. That's all and an only way to have a real sleep()

link|improve this answer
feedback

One scenario where you might want a sleep() function rather than using setTimeout() is if you have a function responding to a user click that will ultimately end up opening a new i.e. popup window and you have initiated some processing that requires a short period to complete before the popup is displayed. Moving the open window into a closure means that it typically gets blocked by the browser.

link|improve this answer
feedback

If you want to sleep an anonymous function like one you've created as a handler, I recommend the following:

function()
{
if (!wait_condition)
    {
    setTimeout(arguments.callee, 100, /*comma-separated arguments here*/);
    }
//rest of function
}

This code says "If the wait condition has not yet been satisfied, call this function again with these arguments." I've used this method to pass in the same arguments to my handlers, effectively making this code a non-polling sleep() (which only works at the start of your function).

link|improve this answer
feedback

I know this is a bit of an old question, but if (like me) you're using Javascript with Rhino, you can use...

try
{
  java.lang.Thread.sleep(timeInMilliseconds);
}
catch (e)
{
  /*
   * This will happen if the sleep is woken up - you might want to check
   * if enough time has passed and sleep again if not - depending on how
   * important the sleep time is to you.
   */
}
link|improve this answer
Why the down vote? I wanted to make this clear in case someone was in the same situation as me. – mjaggard Nov 16 '11 at 14:17
feedback

Code taken from this link will not freeze comp. But it works only on ff.

    /**
 * Netscape compatible WaitForDelay function.
 * You can use it as an alternative to Thread.Sleep() in any major programming language
 * that support it while JavaScript it self doesn't have any built-in function to do such a thing.
 * parameters:
 * (Number) delay in millisecond
*/
function nsWaitForDelay(delay) {
/**
  * Just uncomment this code if you're building an extention for Firefox.
  * Since FF3, we'll have to ask for user permission to execute XPCOM objects.
  */
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");

// Get the current thread.
var thread = Components.classes["@mozilla.org/thread-manager;1"].getService(Components.interfaces.nsIThreadManager).currentThread;

// Create an inner property to be used later as a notifier.
this.delayed = true;

/* Call JavaScript setTimeout function
  * to execute this.delayed = false
  * after it finish.
  */
setTimeout("this.delayed = false;", delay);

/**
  * Keep looping until this.delayed = false
  */
while (this.delayed) {
/**
  * This code will not freeze your browser as it's documented in here:
  * https://developer.mozilla.org/en/Code_snippets/Threads#Waiting_for_a_background_task_to_complete
  */
thread.processNextEvent(true);
}
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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