Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/10/2005, 10:20
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola Juka

A ver si este código te sirve:
Código PHP:
<html>
<
head>
<
script type="text/javascript">
hora=18minuto=25;
function 
reloj()  {
  
ahora = new Date();
  
ahora.getHours();
  
ahora.getMinutes();
  if (
h==hora && m==minuto) {
    
clearInterval(pepe);
    
location.reload();
  }
  if (
h==hora && m==minuto+1)
    
pepe=setInterval('reloj()',500);

</script>
</head>
<body onload="pepe=setInterval('reloj()',500)">

</body>
</html> 
Saludos,