Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the main difference between

setInterval

and

setTimeout

in JavaScript?

share|improve this question
6  
possible duplicate of setTimeout or setInterval? – Marcel Korpel Oct 1 '10 at 0:51
from the summary of each of your provided links (hint hint - see words in bold) : setInterval - "Calls a function or executes a code snippet repeatedly, with a fixed time delay between each call to that function." ; setTimeout - "Calls a function or executes a code snippet after specified delay" – gion_13 Jan 22 at 12:56

4 Answers

up vote 82 down vote accepted

setTimeout(expression, timeout); runs the code/function once after the timeout.

setInterval(expression, timeout); runs the code/function in intervals, with the length of the timeout between them.

Example:

var intervalID = setInterval(alert, 1000); // Will alert every second.
// clearInterval(intervalID); // Will clear the timer.

setTimeout(alert, 1000); // Will alert once, after a second.
share|improve this answer
thanks for the info – Pranay Rana Apr 23 '10 at 7:02
I have a div I want to display once the page loads and fade away after X seconds. Would using setTimeout with a function which changes the style to display none accomplish this? – Batman Feb 12 at 21:02
I've heard that setTimeout is better for animations? Any validity to this? – livingston_mechanical Mar 22 at 16:18

setInterval fires again and again in intervals, while setTimeout only fires once.

See reference at MDN.

share|improve this answer
1  
thanks for the info – Pranay Rana Apr 23 '10 at 7:04

setTimeout():

It is a function that execute a JavaScript statement AFTER x interval.

setTimeout(“do.something();”, 1000); //Execute do.something() 1 second later.

setInterval():

It is a function that execute a JavaScript statement EVERY x interval.

setInterval(“do.somethingElse();”, 2000); //Execute do.somethingElse() every 2 seconds.

The interval unit is in millisecond for both functions.

share|improve this answer
1  
thanks for the info – Pranay Rana Apr 23 '10 at 7:06
4  
As an aside, it is better to not pass a string as the first argument but rather a function, or a closure wrapping the function if you have to maintain context: setTimeout(function(){do.something();}, 1000). Otherwise, you're doing an eval and that is evil. – Weston Ruter May 23 '12 at 17:36

SetInterval repeats the call, SetTimeout only runs it once.

share|improve this answer
thanks for the info – Pranay Rana Apr 23 '10 at 7:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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