I have a webpage on geocities and I would like to put a timer on it. Can someone point me towards one that will work with all browsers?
Thanks
This page has a timer that updates the times once per second.
<a href='http://home.earthlink.net/~sparkomemphis/memphis.countdown.schedule.2005.html' target='_blank'>http://home.earthlink.net/~sparkomemphis/m...edule.2005.html</a>
It works in all browsers that I've tried.
[code:1]
function
update_time( )
{
/*** do someting once per second ***/
setTimeout("update_time()", 1000);
return(false);
}
[/code:1]