Hello,
I can not seem to get this to work. It is a recursive function that calls itself. It is supposed to delay 10 seconds plus a random amount. The problem I'm having is that it repeatedly calls itself every 10 seconds (exactly) without adding a random number of seconds.
I can not seem to get this to work. It is a recursive function that calls itself. It is supposed to delay 10 seconds plus a random amount. The problem I'm having is that it repeatedly calls itself every 10 seconds (exactly) without adding a random number of seconds.
Code:
var i=0;
function load(){
.....
i++;
if (i<=someArray.length){
timer=setTimeout("load()", (10000 + Math.floor(Math.random()*10*1000)));
}
}








