NCAAbbs

Full Version: Timer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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( )
{
&nbsp; /*** do someting once per second ***/
&nbsp; setTimeout("update_time()", 1000);
&nbsp; return(false);
}
[/code:1]
Reference URL's