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
});