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:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: JavaScript Clock Timer
Post your Comment