vote up 7 vote down star
1

Is there some function like delay() or wait() for delaying executing of the JavaScript code for a specific number of milliseconds?

flag

6 Answers

vote up 13 vote down check

There is the

setTimeout( expression, timeout );

function which can be passed the time after which the expression will be executed.

link|flag
vote up 5 vote down

Just to expand a little... You can execute code directly in the setTimeout call, but as @patrick says, you normally assign a callback function, like this. The time is milliseconds

setTimeout(func, 4000);
function func() {
    alert('Do stuff here');
}
link|flag
vote up 4 vote down

You can also use window.setInterval() to run some code repeatedly at a regular interval.

link|flag
vote up 4 vote down

Just to add to what everyone else have said about setTimeout: If you want to call a function with a parameter in the future, you need to set up some anonymous function calls.

You need to pass the function as an argument for it to be called later. In effect this means without brackets behind the name. The following will call the alert at once, and it will display 'Hello world':

var a = "world";
setTimeout(alert("Hello " + a), 2000);

To fix this you can either put the name of a function (as Flubba has done) or you can use an anonymous function. If you need to pass a parameter, then you have to use an anonymous function.

var a = "world";
setTimeout(function(){alert("Hello " + a)}, 2000);
a = "Stack Overflow";

But if you run that code you will notice that after 2 seconds the popup will say 'Hello Stack Overflow'. This is because the value of the variable a has changed in those two seconds. To get it to say 'Hello world' after two seconds, you need to use the following code snippet:

function callback(a){
    return function(){
    	alert("Hello " + a);
    }
}
var a = "world";
setTimeout(callback(a), 2000);
a = "Stac Overflow";

It will wait 2 seconds and then popup 'Hello world'.

link|flag
vote up 3 vote down

You need to use setTimeout and pass it a callback function. The reason you can't use sleep in javascript is because you'd block the entire page from doing anything in the meantime. Not a good plan. Use Javascript's event model and stay happy. Don't fight it!

link|flag
vote up 0 vote down

+1 on setTimeout, I'd vote but I'm at quota

link|flag

Your Answer

Get an OpenID
or

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