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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…