79465869

Date: 2025-02-25 08:35:14
Score: 10 🚩
Natty: 5
Report link

function setUp(){
  
    // Save the h3 element
    var element = document.getElementById("initial");

    // Create setInterval, save to variable to clear later
    var timer = setInterval(function() {
         
        // Current element value
        var value = element.innerHTML;
        
        // Decrease
        value--;
        
        // Set value
        element.innerHTML = value;
        
        // Clear if we're at 0
        if (value === 0) {
            clearTimeout(timer);
        }
    }, 1000);
}
<button onclick="setUp()">Activate timer</button>
<h3 id="initial">60</h3>
Hello, Thanks for your code.

  1. I want to add a "Stop timer" Button to this code. How do I do that?
  2. I also want the countdown to start from 60 seconds when I click the "Activate timer" Button again? Please help. Thanks in advance.
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jon Brown