blob: f4e2bce4d97c56a39a27cbd52573d149738d63a1 (
plain) (
blame)
1
2
3
4
5
6
7
|
const tryAgain = document.getElementById("tryAgain");
const countdown = document.getElementById("counter");
setInterval(() => {
if (Number(countdown.innerText) === 0) tryAgain.style.display = "none";
countdown.innerText = Number(countdown.innerText) - 1;
}, 1000);
|