Estoy empezando con JavaScript y hasta el momento todo bien,... pero me he encontrado con un ejemplo que no acaba de entender.
Es decir, en el que no acabo de entender la función de cada uno de los elementos que hay en el script.
Alguién sería tan amable de comentarlo. MUchas gracias.
Allá va el script:
Código PHP:
<html>
<head>
<script type="text/javascript">
function startTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
t=setTimeout('startTime()',500);
}
function checkTime(i)
{
if (i<10)
{
i="0" + i;
}
return i;
}
</script>
</head>
<body onload="startTime()">
<div id="txt"></div>
</body>
</html>