TextArea on key up event : TextArea « Form Control « JavaScript DHTML






TextArea on key up event

   

<HTML>
<HEAD>
<SCRIPT LANGUAGE=JavaScript> 
function DisplayEvent(eventName){    
   var myMessage = window.document.form1.textarea1.value;    
   myMessage = myMessage + eventName;    
   window.document.form1.textarea1.value = myMessage;
} </SCRIPT>
</HEAD> 
<BODY>
<FORM NAME=form1>
   <TEXTAREA ROWS=15 COLS=40 NAME=textarea1 
      onchange="DisplayEvent('onchange\n');" 
      onkeydown="DisplayEvent('onkeydown\n');" 
      onkeypress="DisplayEvent('onkeypress\n');" 
      onkeyup="DisplayEvent('onkeyup\n\n');">
      press your key here.
   </TEXTAREA>

   <INPUT TYPE="button" VALUE="Clear Event TextArea" 
      NAME=button1 onclick="window.document.form1.textarea1.value=''"> </FORM>
</BODY>
</HTML>

   
    
    
  








Related examples in the same category

1.Textarea rows
2.Is TextArea Multiline
3.TextArea type
4.TextArea wrap
5.TextArea Columns Example
6.TextArea 'value'
7.Select the text in text area
8.Set TextArea to be Active
9.Auto type textarea
10.Not empty TextArea
11.Methods and Properties of the Textarea Object
12.Append text to textarea
13.TextArea on change event
14.TextArea on key down event
15.TextArea on key press event
16.Getting and Setting a Text Object's Value