Package
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Package

Download/Upload Code Projects


You are not connected. Please login or register

JAVASCRIPT countdown

Go down  Message [Page 1 of 1]

1JAVASCRIPT countdown Empty JAVASCRIPT countdown Wed Oct 11, 2023 2:19 pm

Admin


Admin

Code:
<!DOCTYPE html>
<html>
<body>
  <p id="countdown"></p>
  <script>
    let seconds = 10;
    function countdown() {
      document.getElementById("countdown").innerHTML = seconds + " seconds remaining";
      if (seconds <= 0) {
        clearInterval(timer);
        document.getElementById("countdown").innerHTML = "Countdown expired";
      } else {
        seconds--;
      }
    }
    const timer = setInterval(countdown, 1000);
  </script>
</body>
</html>

https://package.goodforum.net

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum