Javascript Clock

The following is the code for your own way to make a clock in html


<html>
<head>
<body bgcolor='000000' text='00ff00' link='000000' alink='000000' vlink='000000'>
<center>
The Current Time Is:
<form name="Tick">
<input type='button' size="12" name="Clock">
</form>

<script>
function show()
{
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12)
{
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
document.Tick.Clock.value=
hours+":"+minutes+":"+seconds+" "+dn
setTimeout("show()",1000)
}
show()
</script>
</head>
</body>
</html>
</center>

Comments

Sign In or Register to comment.