Update Time per second : Time « Development « JavaScript DHTML






Update Time per second

<html>
<head><title>Update Time</title>
<script>
    function UpdateTime(){
        
        var today = new Date();
        var hour = today.getHours();
        var mins = today.getMinutes();
        var secs = today.getSeconds();

        if (secs <=9){
            secs = "0" + secs
        }

        var TotalTime = hour + ":" + mins + ":" + secs;

        if (document.layers) { 
            document.layers.time.document.write(TotalTime); 
            document.layers.time.document.close(); 
        }else if (document.all) { 
            time.innerHTML = TotalTime; 
        } 

        setTimeout("UpdateTime()", 1000) 

}
</script>


</head>

<body onload="UpdateTime()">

<span id=time style="position:absolute;"></span>

</body>
</html>




           
       








Related examples in the same category

1.Formats the current hour and displays it in a static or dynamic way
2.Times Table
3.A Clock Script
4.Time: hour, minutes, and seconds.
5.Display the Current Time in status bar
6.Creating a Clock Object and Displaying the Results on the Page
7.Morning or Evening
8.Time value
9.Get the current time and then extract the hours, minutes and seconds