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

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

c# - SharpSVN - How to get the previous revision? -

php cli reading files and how to fix it? -