JavaScript Timer function for session time out.

<script language=”javascript” type=”text/javascript”>
document.onkeypress= resetTimer
document.onmousemove= resetTimer
document.onmousedown= resetTimer
document.Onfocus= resetTimer

var timerId;

timerId = window.setTimeout(“timeOut()”,7200000);

function resetTimer() {
window.clearTimeout(timerId);
timerId = window.setTimeout(“timeOut()”,7200000);
}

function timeOut(){
// do something here

alert(“Your session is times out. You will not be able to continue. Please login again “);
var x=1;
if(x==1){
//do something here
}
}
</script>


Comments

Leave a Reply

Discover more from Chai's Blog

Subscribe now to keep reading and get access to the full archive.

Continue reading