$(document).ready(function () { let minutes = 60; let seconds = 0; const interval2 = setInterval(function () { if (seconds === 0) { if (minutes === 0) { clearInterval(interval2); } else { minutes--; seconds = 59; } } else { seconds--; } let formattedSeconds = seconds < 10 ? "0" + seconds : seconds; $(".cd-mins").html(minutes + " : "); $(".cd-secs").html(formattedSeconds); }, 1000); }); // // Timer special-offer v2 // let timer2_special_offer_v2 = "60:00"; // const interval2 = setInterval(function () { // const timer_special_offer_v2 = timer2_special_offer_v2.split(":"); // let minutes = parseInt(timer_special_offer_v2[0], 10); // let seconds = parseInt(timer_special_offer_v2[1], 10); // minutes = seconds < 0 ? --minutes : minutes; // seconds = seconds < 0 ? 59 : seconds; // seconds = seconds < 10 ? "0" + seconds : seconds; // if (minutes < 0) { // clearInterval(interval2); // } else { // $(".cd-mins").html(minutes + " : "); // $(".cd-secs").html(seconds); // timer2_special_offer_v2 = minutes + ":" + seconds; // } // }, 1000); function scrollToDiv(divId) { document.getElementById(divId).scrollIntoView(); }