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