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

Is there anyway to implement a timer for JQuery, eg. every 10 seconds it needs to call a js function.

I tried the following

window.setTimeout(function() {
 alert('test');
}, 10000);

but this only executes once and then never again.

share|improve this question

8 Answers

up vote 150 down vote accepted

You can use this:

window.setInterval(yourfunction, 10000);

function yourfunction() { alert('test'); }
share|improve this answer
22  
better is window.setInterval(yourFunction, 1000); the name will call it and in quotes it goes through an eval and slows down. – Rixius Jun 12 '10 at 20:55
3  
Should be 10000 and not 1000 for 10s. – Paulo Manuel Santos Aug 21 '10 at 17:35
You're right, Paulo. I've edited my answer. The 1.000 was there because I just copied it from Roland's question. – Kristof Claes Aug 23 '10 at 7:39
Should be window.setInterval("yourfunction()", 10000); right? – Michael Hopkins Apr 23 '12 at 10:27
1  
@MichaelHopkins - Check out the first comment. – Kristof Claes Apr 24 '12 at 10:03
show 1 more comment
window.setInterval(function() {
 alert('test');
}, 10000);

window.setInterval

Calls a function repeatedly, with a fixed time delay between each call to that function.

share|improve this answer
Could you please edit to 10000? That is 1 second and not 10. – Artur Carvalho Aug 6 '10 at 15:44

Might want to check out jQuery Timer to manage one or multiple timers.

http://code.google.com/p/jquery-timer/

var timer = $.timer(yourfunction, 10000);

function yourfunction() { alert('test'); }

Then you can control it with:

timer.play();
timer.pause();
timer.toggle();
timer.once();
etc...
share|improve this answer
nice utility. Allows controlling lifecycle. – Jigar Shah Mar 16 '12 at 8:46
very useful for when one timer needs to control another timer – Onimusha Feb 1 at 20:17

setInterval is the function you want. That repeats every x miliseconds.

window.setInterval(function() {
    alert('test');
}, 10000);
share|improve this answer

jQuery 1.4 also includes a .delay( duration, [ queueName ] ) method if you only need it to trigger once and have already started using that version.

$('#foo').slideUp(300).delay(800).fadeIn(400);

http://api.jquery.com/delay/

Ooops....my mistake you were looking for an event to continue triggering. I'll leave this here, someone may find it helpful.

share|improve this answer

try jQueryTimers, they have great functionality for polling

http://plugins.jquery.com/project/timers

share|improve this answer
function run() {
    window.setTimeout(
         "run()",
         1000
    );
}
share|improve this answer
2  
-1, because providing a string to eval instead of simply providing the function is the root of too many bugs. – vog Dec 21 '10 at 14:18

I was just experimenting with jQuery and wrote a simple timer / stop watch ... http://bornagainprogrammer.net/2010/08/19/a-simple-stop-watch-timer-using-jquery/

share|improve this answer

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.