<html>
<head>
<script type="text/javascript">
function startTime( )
{
var today=new Date( )
var h=today.gethours( )
var m=today.getMinutes( )
var s= today.getSeconds( )
// add a zero in front of numbers < 10
m = checkTime(m)
s= checkTime(s)
document.getElementById('txt').innerHTML=h+":"+m+":"+s
t=setTimeout('startTime( )',500)
]
function checktime( i)
{
if (i<10)
{i="0" + i}
return i
}
</script>
</head>
<body onLoad="startTime( )">
<div id="txt"></div>
</body>
</html>
0 comments:
Post a Comment