Código Javascript:
Ver original
<html> <head> <script language="JavaScript"> function over() { momentoActual = new Date() hora = momentoActual.getHours() minuto = momentoActual.getMinutes() segundo = momentoActual.getSeconds() if (hora < 10) { hora = '0'+hora; } if (minuto < 10) { minuto = '0'+minuto; } if (segundo < 10) { segundo = '0'+segundo; } horaImprimible = hora + " : " + minuto + " : " + segundo document.form_reloj.reloj.value = horaImprimible } function out() { momentoActual = new Date() hora = momentoActual.getHours() minuto = momentoActual.getMinutes() segundo = momentoActual.getSeconds() if (hora < 10) { hora = '0'+hora; } if (minuto < 10) { minuto = '0'+minuto; } if (segundo < 10) { segundo = '0'+segundo; } horaImprimible = hora + " : " + minuto + " : " + segundo document.form_reloj.reloj.value = horaImprimible setTimeout("out()",1000) } </script> </head> <body> <form name="form_reloj"> <input type="text" name="reloj" size="10" onMouseOver="over()" onMouseOut="out("> </form> </body> </html>