SyntaxFix
Write A Post
Hire A Developer
Questions
function test() { alert('called!'); } var id = setInterval('test();', 10000); //call test every 10 seconds. function stop() { // call this to stop your interval. clearInterval(id); }