could you please inform how the number of texts can be counted within textarea by pressing "enter".
Textarea can be created like this:
<textarea name="ta1" id="ta1" rows="4" cols="50">
ABC[enter]
DEF[enter]
GHI[enter]
</textarea>
<input type="text" name="textnumber" value="">
Then "textnumber" will show "3" instantaneously. Thanks.