जावास्क्रिप्ट में किसी फ़ंक्शन के निष्पादन को रोकने के लिए, ClearTimeout () विधि का उपयोग करें। यह फ़ंक्शन कॉल सेटटाइमआउट () फ़ंक्शन द्वारा सेट किए गए किसी भी टाइमर को साफ़ करता है।
उदाहरण
जावास्क्रिप्ट में clearTimeout() विधि के साथ काम करने का तरीका जानने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं।
<html> <head> <title>JavaScript clearTimeout() method</title> <script> <!-- var imgObj = null; var animate ; function init(){ imgObj = document.getElementById('myImage'); imgObj.style.position= 'relative'; imgObj.style.left = '0px'; } function moveRight(){ imgObj.style.left = parseInt(imgObj.style.left) + 10 + 'px'; animate = setTimeout(moveRight,20); // call moveRight in 20msec } function stop(){ clearTimeout(animate); imgObj.style.left = '0px'; } window.onload = init; //--> </script> </head> <body> <form> <img id = "myImage" src = "/images/html.gif" /> <p>Click the buttons below to handle animation</p> <input type = "button" value = "Start" onclick = "moveRight();" /> <input type = "button" value = "Stop" onclick = "stop();" /> </form> </body> </html>