I have a <textarea> that is getting updated from a form with jquery. I might never actually enter anything into the textarea directly.
But I need to know how I can monitor changes to the textarea that aren't directly from direct input on the textarea?
I can use
$('#myTextbox').on('input', function() {
// do something
});
to know when the user is editing the myTextbox.
I tried
$('#myTextbox').on('change', function () {
// do something
});
but that didn't work either.
Is this possible?