I need to write a for each loop with timer in javascript.
It will pass each index of the object with a specific time interval.
Lets say we have obj = {a:1,b:2,c:3,...}
time: 0ms => obj.a
time: 100ms => obj.b
time: 200ms => obj.c
.
.
.
I have done the following two things but can't unite these two.
Please check out http://jsfiddle.net/WFtaG/11/