Textarea.onBlur : TextArea : Form JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Form » TextArea »

 

Textarea.onBlur







The onBlur event handler is fired when the focus is moved away from that particular text area.












<html>
    <head>
    <script language="JavaScript">
    <!--
    var counter = 0;
    function comeBack(){
      document.myForm.myTextArea1.focus();
      document.myForm.counter.value = counter++;
    }
    -->
    </script>
    </head>
    <body onLoad='comeBack()'>
    <form name="myForm">
      <textarea name="myTextArea1" rows=cols=50 onBlur='comeBack()'>
        Here is some text in my text area.
      </textarea>
      <textarea name="myTextArea2" rows=cols=50>
      Here is some text in my text area.
      </textarea><br>
      <input type=TEXT size=value="" name="counter">
    </form>
    </body>
    </html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Form
» TextArea