vote up -1 vote down star

I need to add delay about 100 milisecond to my javascipt but i don't want to use settimeout function of window and either don't want to use busy loop. does anyone has any suggestion?

flag

45% accept rate
6  
Can you explain why setTimeout isn't appropriate/doesn't meet your needs? – eyelidlessness Jul 26 at 6:24

4 Answers

vote up 11 vote down check

Unfortunately, setTimeout() is the only reliable way (not the only way, but the only reliable way) to pause the execution of the script without blocking the UI.

It's not that hard to use actually, instead of writing this:

var x = 1;

// Place mysterious code that blocks the thread for 100 ms.

x = x * 3 + 2;
var y = x / 2;

you use setTimeout() to rewrite it this way:

var x = 1;
var y = null; // To keep under proper scope

setTimeout(function() {
    x = x * 3 + 2;
    y = x / 2;
}, 100);

I understand that using setTimeout() involves more thought than a desirable sleep() function, but unfortunately the later doesn't exist. Many workarounds are there to try to implement such functions. Some using busy loops:

function sleep(milliseconds) {
  var start = new Date().getTime();
  for (var i = 0; i < 1e7; i++) {
    if ((new Date().getTime() - start) > milliseconds){
      break;
    }
  }
}

others using an XMLHttpRequest tied with a server script that sleeps for a amount of time before returning a result.

Unfortunately, those are workarounds and are likely to cause other problems (such as freezing browsers). It is recommended to simply stick with the recommended way, which is setTimeout()).

link|flag
I use NoScript on my laptop precisely because of people using functions like that sleep function or other pointless tight loops. Otherwise it suddenly burns a hole in my lap. – James M. Jul 26 at 7:02
@James M.: Totally Agree... I never understood why there is such a big stigma around setTimeout(). – Andrew Moore Jul 26 at 7:05
vote up 2 vote down

This thread has a good discussion and a useful solution:

function pause( iMilliseconds )
{
    var sDialogScript = 'window.setTimeout( function () { window.close(); }, ' + iMilliseconds + ');';
    window.showModalDialog('javascript:document.writeln ("<script>' + sDialogScript + '<' + '/script>")');
}

Unfortunately it appears that this doesn't work in some versions of IE, but the thread has many other worthy proposals if that proves to be a problem for you.

link|flag
Seems like a solution waiting for a problem. I can't think of a single situation in which setTimeout would not do its job. But +1 for creativity. :) – musicfreak Jul 26 at 6:41
vote up 0 vote down

In jquery,U can chanin methods,So it will be executed one after another.you can have a hidden div in your page,Use the hide/show method of the div in the chaining.You can set the speed a 10 seconds there.so that you will get a delay there Ex :

myfunction1(){
    alert("First function called");
    $("#hiddenDiv").show(10,function(){

        mySecondFunction();
     });

});

in the above code, First function called alert will come then after that,"mySEcondFunction" will be executed

link|flag
1  
jQuery uses setTimeout() to achieve this. – Andrew Moore Jul 26 at 6:55
vote up 0 vote down

Actually only setTimeout is fine for that job and normally you cannot set exact delays with non determined methods as busy loops.

link|flag

Your Answer

Get an OpenID
or

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