Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/05/2002, 05:08
Nisoa
 
Fecha de Ingreso: febrero-2002
Mensajes: 15
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: Reload completo en tanto tiempo ?? Ayuda

Hola, a ver si esto te sirve:

<script language="JavaScript">
var id;
var tiempo;
tiempo=0;
function pasar()
{
id=setInterval("iniciar()",1000);
}

function iniciar()
{
tiempo= tiempo + 1;
if(tiempo==4)
{
clearInterval(id);
parent.location.href='pagina.asp';
}
}
</script>

Chao.

Nisoa