Skip to content Skip to sidebar Skip to footer

Add Delay Between 'for' Loop Iterations

I'm trying to implement basic 60 sec counter(A p element with idcounter), that is triggered after a button(counter_start()) is pressed.But I want delay of 1 sec between this and ma

Solution 1:

Try this Example Hope it will work for u

JS

for(i = 1; i <= 3; i++)
   {
   (function(i){
       setTimeout(function(){
         alert(i);
     }, 1000 * i);
   }(i));
} 

Solution 2:

Javascript operates synchronously in the browser.

You need to use setTimeout or setInterval to schedule the for loop's body to be called every second. I'm using setTimeout in the below example for easier "garbage collection"; we will never reschedule the tick to happen after we don't need to update things anymore.

<scripttype="text/javascript">var counter = 0;

functioncounter_tick() {
    if(counter < 60) {
        counter++;
        document.getElementById("counter").innerHTML = counter;
        setTimeout(counter_tick, 1000); // Schedule next tick.
    }
}

functioncounter_start() {
    counter_tick(); // First update, also schedules next tick to happen.
}


</script>

Solution 3:

It sounds like you are looking for a way to pause the current thread, which isn't possible in JavaScript and would probably be a bad idea anyway (the user's browser would lock up while the thread was paused).

A timer is really the way to go with this, otherwise you are fighting the way the language is intended to work.

Solution 4:

There is no sleep-function in JS. But you can use window.setTimeout to call a function in given intervals:

functioncounter_start(){
    // get current valuevar value = document.getElementById("counter").innerHTML*1;
    // leave function if 60 is reachedif(value == 60) {
         return;
    }
    // set the innerHTML to the last value + 1document.getElementById("counter").innerHTML=value+1;
    // call next iterationwindow.setTimeout(function(){counter_start()}, 100);
}

counter_start();

JSFiddle-Demo

Solution 5:

For-loops run to completion, so you wouldn't usually use one for this. You just need a timer and a variable to increment:

var maketimer = function(){
    var tick = 0,
        interval_ms = 1000,
        limit = 10,
        id;
    return {
        start: function(){
            var timer = this;
            console.log('start');
            id = setInterval(function(){
                if(tick === limit){
                    timer.stop();
                    timer.reset();
                    return;
                }
                tick += 1;
                console.log(tick);
            }, interval_ms);
        },
        stop: function(){
            console.log('stop');
            clearInterval(id);
        },
        reset: function(){
            console.log('reset');
            tick = 0;
        }
    };
};

var t = maketimer();
t.start();

If you really need to use a for-loop, then you could use a generator function. They're part of the proposed ES6 spec., and you'll need Firefox 26+ to try this out. However the only point of doing this would be to learn about generator functions.

var maketimer = function(){
    var interval_ms = 1000,
        limit = 10,
        id,
        loop,
        it;
    loop = function*(){
        var i;
        for(i=1; i<=limit; i+=1){
            yield i;
        }
    };
    it = loop();
    return {
        start: function(){
            var timer = this;
            console.log('start');
            id = setInterval(function(){
                var tick = it.next();
                console.log(tick.value);
                if(tick.done){
                    timer.stop();
                    timer.reset();
                    return;
                }
            }, interval_ms);
        },
        stop: function(){
            console.log('stop');
            clearInterval(id);
        },
        reset: function(){
            console.log('reset');
            it = loop();
        }
    };
};

var t = maketimer();
t.start();

Post a Comment for "Add Delay Between 'for' Loop Iterations"