Date and live time in the status bar

Started by ganeshbala, Apr 11, 2009, 12:24 PM

Previous topic - Next topic

ganeshbala

Description: Displays the date and live time in the status bar

<script language="JavaScript">

function doClock() {

window.setTimeout( "doClock()", 1000 );

today = new Date();

self.status = today.toString();

    }
doClock()
</script>


Look at your status bar!