How do I detect change event on textarea using javascript?
I'm trying to detect how many characters left is available as you type.
I tried using the onchange event, but that seems to only kick in when focus is out.
Thanks,
Tee
|
How do I detect change event on textarea using javascript? I tried using the onchange event, but that seems to only kick in when focus is out. Thanks, |
||||
|
|
|
You will need to use See my answer on How to impose maxlength on textArea for a code sample. |
|||||||||||||||
|
|
It's 2012, the post-PC era is here, and we still have to struggle with something as basic as this. This ought to be very simple. Until such time as that dream is fulfilled, here's the best way to do this, cross-browser: use a combination of the
The The advantage of using Now IE, as always, does a half-assed job of supporting this: neither Source: http://www.alistapart.com/articles/expanding-text-areas-made-elegant/ |
|||||||
|
|
Have you looked into |
|||
|
Make it easy on yourself and use a jQuery plugin like jquery.maxlength. Tutorial at http://www.anon-design.se/demo/maxlength-with-jquery. |
|||||
|
|
For Google-Chrome, oninput will be sufficient (Tested on Windows 7 with Version 22.0.1229.94 m). Not tested on Firefox.
|
||||
|
|
|
I know this isn't exactly your question but I thought this might be useful. For certain applications it is nice to have the change function fire not every single time a key is pressed. This can be achieved with something like this:
This works by testing if a more recent event has fired within a certain delay period. Good luck! |
||||
|
|
|
I know this question was specific to JavaScript, however, there seems to be no good, clean way to ALWAYS detect when a textarea changes in all current browsers. I've learned jquery has taken care of it for us. It even handles contextual menu changes to text areas. The same syntax is used regardless of input type.
or
|
|||
|
|
The best thing that you can do is to set a function to be called on a given amount of time and this function to check the contents of your textarea.
|
|||||
|