how to set the maximum minutes in setTimeout() or
Hi Friends,
I have to call the function automatically, after 55th minute. So I'm planning to use setTimeout function in javascript. But it's correctly working for only below 15 minutes. If I give more than 15 it's not working. can you please tell me how to set 55 minutes. I'm using the following code.
function SetTimer(){
var dblMinutes = 55*60000;
timerObj = setTimeout("ConfirmUpdate()",timeoutMinutes);
}
setTimert();
My requirement is 5 minutes before session out, I have to show the messgae "your session is going to expire. Press ok to renew the session".So only I'm trying the above the option. Is there any other way to show this message?please help me. session out is 60 mins.
regards
Kasi
__________________
Regards
Kasi
|