Status Bar Clock

Status Bar Clock





The code for the status bar clock
<script language="javascript">
function displaytime() {
now=new Date();
time=now.toLocaleString();
window.status=time
timeoutID=setTimeout('displaytime()',1000)
}
</script>
</head>
<body OnLoad="displaytime()">
</body>