NamePros.Com (http://www.namepros.com/)
-   CODE (http://www.namepros.com/code/)
-   -   JS Live Clock (http://www.namepros.com/code/112044-js-live-clock.html)

Eric 08-02-2005 01:27 PM

JS Live Clock
 
HTML Code:
/* Save as clock.html and upload */ <HTML> <TITLE>Clock</TITLE> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- function showFilled(Value) { return (Value > 9) ? "" + Value : "0" + Value; } function StartClock24() { TheTime = new Date; document.clock.showTime.value = showFilled(TheTime.getHours()) + ":" + showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds()); setTimeout("StartClock24()",1000) } //--> </script> <style type="text/css"> <!-- .input { border-style: none; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:8pt } --> </style> </head> <BODY bgcolor="#FFFFFF" onLoad="StartClock24()"> <center> <br> <br> <br> <br> </font> <form name=clock> <input type=text name=showTime size=8 class=input> </form> </center> </body> </html>


All times are GMT -7. The time now is 05:22 PM.
Site Sponsors
Advertise your business at NamePros

Powered by: vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0