Sunday, November 14, 2021
Nema
 var timer = null;
 setInterval(function() {
            var div = document.querySelector("#counter");
            var count = div.textContent * 1 - 1;
            div.textContent = count;
            if (count == 0) {
                window.location.href="https://example.com";
            }
        }, 1000);
 function goAway() {
    clearTimeout(timer);
    timer = setTimeout(function() {
        window.location.href="https://example.com";
    }, 5000);
}  
window.addEventListener('mousemove', goAway, true); 
goAway();
Subscribe to:
Comments (Atom)
 
