Mega Code Archive

 
Categories / JavaScript Tutorial / Form
 

Textarea handleEvent()

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>