javascript detect textarea change code example
Example: javascript detect textarea change
$('#myTextAreaID').on('input propertychange paste', function() {
//my Textarea content has changed
});
$('#myTextAreaID').on('input propertychange paste', function() {
//my Textarea content has changed
});