function setCountDown ()
{
seconds--;
if (seconds < 0){
minutes--;
seconds = 59
}
if (minutes < 0){
hours--;
minutes = 59
}
if (hours < 0){
days--;
hours = 23
}
document.getElementById("remain").innerHTML = hours+" hours, "+minutes+" minutes, "+seconds+" seconds";
SD=window.setTimeout( "setCountDown()", 1000 );
if (minutes == '00' && seconds == '00') { seconds = "00"; window.clearTimeout(SD);
window.alert("Time is up. Press OK to continue."); // change timeout message as required
//window.location = "http://www.yourpage.com" // Add your redirect url
}
}
function doTimer()
{
if (!timer_is_on){
timer_is_on=1;
setCountDown ();
}
}
function stopCount()
{
clearTimeout(SD);
timer_is_on = 0;
}
the problem is the pause working on one page but when i click the next button the page will reload and the truth is the timer never pause. i was wondering how can i pause the timer?