Update Time per second : JavaScript DHTML examples (example source code) » Development » Time

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   Development   » [  Time  ]   
 



Update Time per second

Please note that some example is only working under IE or Firefox.

<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.  Show time in textfield








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.