Javascript TUTORIAL


Javascript Timer




Let us make a form based clock that displays time in the 24 hour format.

<form name="Form1">
<input type="text" size="8" name="Clock"> </form>
<script>
function update()
{
var today=new Date();
var hours=today.getHours();
var minutes=today.getMinutes();
var seconds=today.getSeconds();
if (hours<10)
hours="0"+hours;
if (minutes<10)
minutes="0"+minutes;
if (seconds<10)
seconds="0"+seconds;
document.Form1.Clock.value=hours+":"+minutes+":"+seconds;
setTimeout("update()",1000);
}
update();
</script>


Save the file as say timer.htm. If you open the file in a browser it will produce the following.



Explanation



We use the Date() object to get the hours, minutes, seconds of the day. setTimeoiut() evaluates an expression or calls a function after a certain amount of time, specified in milliseconds. We use setTimeout() to call the update() function every one second. So the clock in the text element is updated every second.





You can try this example online at the link below, which will open in a new window.

Javascript Timer Example