Page 1 of 1

How to insert a digital clock?

Posted: Wed Sep 12, 2007 4:18 pm
by Gyanu
I had a script os the digital clock.

insert these code in ur website.

Code: Select all

<HTML>
<TITLE>Clock</TITLE>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!--
function showFilled(Value) {
  return (Value > 9) ? "" + Value : "0" + Value;
}
function StartClock24() {
  TheTime = new Date;
  ****.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()">
[align=center]<form name=clock><input type=text name=showTime size=8 class=input>
  </form>
[/align]
</body>
</html>
After that bowse it.

Posted: Mon Sep 24, 2007 10:03 pm
by jasondsouza
thank you for sharing a very nice script...

Posted: Tue Sep 25, 2007 7:21 am
by njan
thanks a lot for inserting this thread