<html> <head> <script language="javascript"> function hello(){ alert('Xin chào !'); } var x = setTimeout(hello, 3000); function clearTime(){ clearTimeout(x); document.write('đã hủy'); } </script> </head> <body> <input type="button" onclick="clearTime()" value="Hủy Time Out" /> </body> </html>