Textarea.handleEvent() : TextArea « Form « JavaScript Tutorial






The handleEvent() method invokes the handler for the event specified.

<html>
    <head>
    <script language="JavaScript1.2">
    <!--
    var counter = 0;

    window.captureEvents(Event.CLICK)
    window.onClick = myClickHandler;

    function myClickHandler{
      window.document.myForm.myTextArea.handleEvent;
    }
    function changeText(){
      document.myForm.myTextArea.value = counter++;
    }
    -->
    </script>
    </head>
    <body>
    <form name="myForm">
      <textarea name="myTextArea" rows=6 cols=50 onClick='changeText()'>
      Here is some text in my text area.
      </textarea>
    </form>
    </body>
    </html>








10.16.TextArea
10.16.1.Textarea
10.16.2.Textarea.blur()
10.16.3.Textarea.defaultValue
10.16.4.Textarea.focus()
10.16.5.Textarea.form
10.16.6.Textarea.handleEvent()
10.16.7.Textarea.name
10.16.8.Textarea.onBlur
10.16.9.Textarea.onChange
10.16.10.Textarea.onFocus
10.16.11.Textarea.onKeyDown
10.16.12.Textarea.onKeyPress
10.16.13.Textarea.onKeyUp
10.16.14.Textarea.onSelect
10.16.15.Textarea.select()
10.16.16.Textarea.type
10.16.17.Textarea.value