JavaScript Clock Timer
In this section, we are going to show you a clock timer using JavaScript.
In the given example, we have created the instance of Date to show the time. Here we have created a condition that if the number of minutes, seconds or hours is less than 9, then it will add 0 in front of min, sec or hour value like 09 in the timer and it will add AM or PM according to the hour value. By using the JavaScript method setTimeout("slideImages()",1000), the function displayTime() is called after every one second and performs the desired action when the target time is completed.
Here is the code
| <html> <h2>Clock Timer</h2> <script language="JavaScript" type="text/javascript"> function displayTime() { var date=new Date(); hour=date.getHours(); min=date.getMinutes(); sec=date.getSeconds(); if (min<=9) { min="0"+min; } if (sec<=9) { sec="0"+sec; } if (hour>12) { hour=hour-12; add="pm"; } else { hour=hour; add="am"; } if (hour==12){ add="pm"; } time = ((hour<=9) ? "0"+hour : hour) + ":" + min + ":" + sec + " " + add; if (document.getElementById){ document.getElementById('timer').innerHTML = time; } else if (document.layers) { document.layers.timer.document.write(time); document.layers.timer.document.close(); } setTimeout("displayTime()", 1000); } window.onload = displayTime; </script> <body> <span id="timer" style="position:absolute; left:10; font-family: ariel roman; font-size: 18pt; color:white; background:black"></span> </body> </html> |
Output will be displayed as:
Tutorials
- Java 26 (JDK 26) Features with examples
- Top 10 Reasons to Learn Java in 2026
- JDK 26 Tutorial
- Java Certification Roadmap 2026: Which Oracle Certs Matter
- Install JDK 26: A Complete Beginner's Guide (2026)
- What Is Java? A Complete, Up-to-Date Guide for 2026
- Java 26 HTTP3 tutorial - HTTP 3 support in JDK 26 - How to use HTTP/3 in Java 26 application?
- JDK 28 Preview: Value Objects, Shenandoah GC & JSON API
- Java Tutorials


