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

How can I repeat a function doSomething() every 5 seconds.

I also need code that will make it stop doing it.

And code to on-the-fly adjust the frequency.

share|improve this question

5 Answers

up vote 15 down vote accepted

setTimeout() will only launch the command once. In this case, setInterval() is your friend.

var iFrequency = 5000; // expressed in miliseconds
var myInterval = 0;

// STARTS and Resets the loop if any
function startLoop() {
    if(myInterval > 0) clearInterval(myInterval);  // stop
    myInterval = setInterval( "doSomething()", iFrequency );  // run
}

function doSomething()
{
    // (do something here)
}

from code...

<input type="button" onclick="iFrequency+=1000; startLoop(); return false;" 
       value="Add 1 second more to the interval" />
share|improve this answer
How do I adjust the frequency on-the-fly? And what code will stop setInterval()? – steven Oct 9 '09 at 7:21
Ok clearInterval stops it, but what about the frequency? – steven Oct 9 '09 at 7:22
the frequency is the second argument of the function. See the link to the tutorial. – pixeline Oct 9 '09 at 7:24
but how can I change the freq when the interval is in progress? – steven Oct 9 '09 at 7:25
edited so you can see how to change the frequency – balexandre Oct 9 '09 at 7:27
show 6 more comments

Use

setInterval

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

for repeated action and

clearInterval

Cancels repeated action which was set up using setInterval().

to stop that

share|improve this answer
Ok clearInterval stops it, but what about changing the frequency? – steven Oct 9 '09 at 7:23
You can change the delay in the setInterval – rahul Oct 9 '09 at 7:24
but how can I change the freq when the interval is in progress? – steven Oct 9 '09 at 7:27

Try jQuery Timers

share|improve this answer
1  
The newest version is available at the jQuery Plugins site. plugins.jquery.com/project/timers – Blair Mitchelmore Oct 9 '09 at 7:29

You could use setTimeout() for this.

http://www.w3schools.com/htmldom/met%5Fwin%5Fsettimeout.asp

share|improve this answer
how do I stop it? And how do I adjust the frequency on-the-fly? – steven Oct 9 '09 at 7:20
<script type="text/javascript">
var t; var timer_is_on=0; var timeout=5000;

function timedCount() {
  doSomeThing();
  t = setTimeout("timedCount()",timeout);
}

function doTimer() {
  if (!timer_is_on) {
    timer_is_on=1;
    timedCount();
  }
}

function stopCount() {
  clearTimeout(t);
  timer_is_on=0;
}
function changeFreq() {
   timeout = 2000;
}
</script>
share|improve this answer
nice. Close, doesn't change the frequency on the fly but I'm not sure if that's possible now. – steven Oct 9 '09 at 7:26

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.