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? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -