Forum Moderators: open
I am looking for a javascript function that will run every xx minutes without refreshing?
Thanks
Think this should work, alternate form is, allows parameter if required
window.setTimeout("doIt()", xx * 60 * 1000);
[edited by: daveVk at 7:49 am (utc) on Sep. 13, 2006]
setInterval("someFunction()", 1000);