Home Javascript JavaScript clearTimeOut method



JavaScript clearTimeOut method
Posted on: January 29, 2009 at 12:00 AM
JavaScript's HTML DOM window object method clearTimeOut() method is used to stop or clear the time out variables value.

JavaScript clearTimeOut method

     

JavaScript's HTML DOM window object method clearTimeOut() method is used to stop or clear the time out variables value. In this section of JavaScript methods tutorials we will be able to clear the set time out variables value. 

 

 

 

 

 

Syntax

window.clearTimeout( setTimeOutVariable );

Description of code : 

In our html code we have created two buttons. One buttons sets the timeout variable's value to the one thousand millisecond and another clears this value by getting the time out variables set value. Here is the full example code of clearTimeoutExample.html as follows: 

clearTimeoutExample.html

<html>
<body>
<script language="javascript">
var intValue = 0
function myMethod(){
alert('timeout');
}
</script>

<p>&nbsp;</p>
<p align="center">&nbsp;</p>
<div style="background: #cf2255; width:'100%';" align="center">
<font color="#ffffcc" size="12pt"><b>Clear Timeout Example</b></font></div>
<center>
<button onclick="intValue=window.setTimeout('myMethod()', 1000);">Start timeout</button>
<button onclick="intValue=window.clearTimeout(intValue);">Stop timeout</button>
</center>
</body>
</html>

Output :

Download Source Code

     

Related Tags for JavaScript clearTimeOut method:
javajavascripthtmlcdomtimevariablesscriptobjecttimeoutmethodvariablesedwindowipvalueriacleartostoptopearevaruseimartinmlasmoutjclesmeobjdoshtmisimeeaarrtvascrssriripthavstabablalujendomo


More Tutorials from this section

Ask Questions?    Discuss: JavaScript clearTimeOut method  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.