C
chocster
this is wat i am doing...
function doRedirect()
{
if (!num)
{
timer = setTimeout("_SFSUBMIT_",1000);
num = true;
}
cleartime();
}
.....i want to kno if there is a way to make the setTimeout dynamic...in
other words how wud i load it the first time where miliseconds equal
1000 and then say 10 minutes later...cos i try to do this by adding a
counter but this does not work...cos it just carries on loading the
page...like so ...
timer = setTimeout("_SFSUBMIT_",1000*counter);
...where counter increment by 10 every time....
thank chocy
function doRedirect()
{
if (!num)
{
timer = setTimeout("_SFSUBMIT_",1000);
num = true;
}
cleartime();
}
.....i want to kno if there is a way to make the setTimeout dynamic...in
other words how wud i load it the first time where miliseconds equal
1000 and then say 10 minutes later...cos i try to do this by adding a
counter but this does not work...cos it just carries on loading the
page...like so ...
timer = setTimeout("_SFSUBMIT_",1000*counter);
...where counter increment by 10 every time....
thank chocy