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# - SharpSVN - How to get the previous revision? -

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

url - Querystring manipulation of email Address in PHP -