Mega Code Archive

 
Categories / JavaScript Tutorial / Form
 

Text onBlur

The onBlur event handler is fired when the focus is moved away from that particular text box. <html>     <head>     <script language="JavaScript">     <!--     var counter = 0;     function comeBack(){       document.myForm.myText1.focus();       document.myForm.counter.value = counter++;     }     -->     </script>     </head>     <body onLoad='comeBack()'>     <form name="myForm">       <input type=TEXT value="First Box" name="myText1" onBlur='comeBack()'>       <input type=TEXT value="Second Box" name="myText2"><br>       <input type=TEXT size=2 value="" name="counter">     </form>     </body>     </html>