Simple example:
for (var i = 0; i < 10; ++i) {
console.log(i); // <--- should be show with delay in 300ms
}
Simple setTimeout using of course doesn't work... I guess there's should be using closures..
Simple example:
for (var i = 0; i < 10; ++i) {
console.log(i); // <--- should be show with delay in 300ms
}
Simple setTimeout using of course doesn't work... I guess there's should be using closures..
It's a simple matter of writing a recursive function:
function display(i)
{
if (i == 10) return;
setTimeout(function(){ console.log(i); display(i+1); }, 300);
}
You could use setInterval, like so:
var i = 0;
var id = setInterval(function(){
if (i == 9) clearInterval(id);
console.log(i);
i++;
}, 300);
Example here http://jsfiddle.net/MLWgG/2/
Should do the job:
for (var i = 0; i < 10; ++i) {
(function(i) {
setTimeout(function(){console.log(i);}, i*300);
})(i);
}