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
Post a Comment