tengo este pero tampoco me funciona....
Código Javascript
:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script src="jquery-1.11.1.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
var time;
function inicio() {
time = setTimeout(function() {
$(document).ready(function(e) {
$.ajax({
url:'server/include/verisession.php',
type:'POST',
data:'veri=1',
success: function(data){
if(data == 1)
{
alert("Sesion Caducada");
document.location.href='index.html';
}
}
});
});
},180000);//fin timeout
}//fin inicio
function reset() {
clearTimeout(time);//limpia el timeout para resetear el tiempo desde cero
time = setTimeout(function() {
$(document).ready(function(e) {
$.ajax({
url:'server/include/verisession.php',
type:'POST',
data:'veri=1',
success: function(data){
if(data == 1)
{
alert("Sesion Caducada");
document.location.href='index.html';
}
}
});
});
},180000);//fin timeout
}//fin reset
</script>
</head>
<body onload="inicio()" onkeypress="reset()" onclick="reset()" onMouseMove="reset()">
gghghghg
</html>