যদি আপনি setTimeout() ব্যবহার করে একটি সময় সেট করে থাকেন ফাংশন, তারপর আপনি JavaScript clearTimeout() ফাংশন ব্যবহার করে এটি পরিষ্কার করতে পারেন।
উদাহরণ
আপনি জাভাস্ক্রিপ্ট -
এ clearTimeout() ফাংশন কীভাবে প্রয়োগ করবেন তা শিখতে নিচের কোডটি চালানোর চেষ্টা করতে পারেন<html> <head> <title>JavaScript Animation</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>