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>

setInterval:window.onload = function(){setInterval(clk, 1000);}};– Rob W Feb 12 '12 at 10:101000relate to? – sandbox Feb 12 '12 at 10:12setInterval, which answers your question. – Brandon Tilley Feb 12 '12 at 10:131000= 1000 milliseconds = 1 second. Basically, it runs the function every second. – Rob W Feb 12 '12 at 10:14