Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/11/2007, 12:50
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Re: Redireccionar página al detectar inactividad en la aplicación Web

Hola thisisalexis

Esto te puede servir:

Código PHP:
<html>
<
head>
<
script type="text/javascript">
var 
pepe;
function 
ini() {
  
pepe setTimeout('location="index.html"',5000); // 5 segundos
}
function 
parar() {
  
clearTimeout(pepe);
  
pepe setTimeout('location="index.html"',5000); // 5 segundos
}
</script>
</head>
<body onload="ini()" onkeypress="parar()" onclick="parar()">

</body>
</html> 
Saludos,