JavaScript Detect Textarea Change
$('#myTextAreaID').on('input propertychange paste', function() {
//my Textarea content has changed
});
Grepper
$('#myTextAreaID').on('input propertychange paste', function() {
//my Textarea content has changed
});