Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have made a clock in javascript but its a static clock. What changes I need to do in the following code so that it updates with every second.

<html>
<head>
    <title>Javascript Clock</title>
    <script type="text/javascript">
        function clk() {
            var a=new Date();   
            document.getElementById("disp").innerHTML=a.getHours() + ":" + a.getMinutes() + ":" + a.getSeconds() ;

        }
    </script>
</head>

<body>
    <input type="button" onclick="clk()" value="Display Clock" />
    <p id="disp">Clock Space</p>
</body>

</html>
share|improve this question
7  
Have a look at setInterval: window.onload = function(){setInterval(clk, 1000);}}; – Rob W Feb 12 '12 at 10:10
@RobW What does 1000 relate to? – sandbox Feb 12 '12 at 10:12
His comment contains a link to documentation on setInterval, which answers your question. – Brandon Tilley Feb 12 '12 at 10:13
1  
@sandbox 1000 = 1000 milliseconds = 1 second. Basically, it runs the function every second. – Rob W Feb 12 '12 at 10:14
@RobW. Should have been an answer... – gdoron Feb 12 '12 at 10:16
show 6 more comments

3 Answers

up vote 4 down vote accepted

You can use setInterval to run your clk() function every second:

setInterval(clk, 1000); // run clk every 1000ms

MDN on setInterval

As nnnnnn points out, the timer interval probably won't be synchronized with the passage of an actual, real-time second, so using an interval like 100ms might not be a bad idea.

share|improve this answer
Note: you may find the clock runs more smoothly if you update more often than once per second, say every 100ms, because the timer interval isn't guaranteed to be exact. – nnnnnn Feb 12 '12 at 10:30
@nnnnnn: Great observation! I've incorporated that into my answer. :) – Twisol Feb 12 '12 at 10:35

You can add setTimeout(clk,1000); to your function,as bellow:

function clk() {
        var a=new Date();   
        document.getElementById("disp").innerHTML=a.getHours() + ":" + a.getMinutes() + ":" + a.getSeconds() ;
        setTimeout(clk,1000);
    }
share|improve this answer
function clk() {
    var a=new Date();   
    document.getElementById("disp").innerHTML=a.toLocaleTimeString();
    setTimeout(clk,1000);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.