I’ve done this a month before…
But now its not working…
The code is
window.onload = function(){
setTimeout(function(){
alert("Hello");
}, 10000);
};
This is written in script in head of the test.php page.
The script and other tags are correct.
I would like to call a specific function every 10 seconds. The alert just shows once only. This is problem in every browser….
After this testing i would like to check the url every 2 seconds and call an AJAX function.
Any Help??
That’s what
setTimeoutdoes (executes once after a specified interval). You’re looking forsetInterval(calls a function repeatedly, with a fixed time delay between each call to that function):