php - Fire event when text in textarea is changed -


does know how pickup if text within <textarea> has been modified using jquery?

you have bind change , keyup on text area.

the change prevent context-menu pasting, , keyup fire every keystroke.

$('#textarea').bind('change keyup', function() {   alert('handler .change() called.'); }); 

Comments

Popular posts from this blog

sql - text truncated using perl DBI insert -

c++ - Is it possible to compile a VST on linux? -

php - Pass object by reference or value -