Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,106 questions

40,778 answers

573 users

How to clears a timer set with clearInterval() in JavaScript

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>

<p id="pid"></p>

<button onclick="StopTime()">Stop time</button>

<script> 
var interval = setInterval(function(){ ShowTime() }, 1000);

function ShowTime() {
    var dt = new Date();
    var tm = dt.toLocaleTimeString();
    document.getElementById("pid").innerHTML = tm;
}

function StopTime() {
    clearInterval(interval);
}


/*
run:
 
09:51:08
 
*/
</script>

</body>
</html>

 





answered May 3, 2017 by avibootz

Related questions

...