I want to detect when the content of a <textarea>
element has changed. For changes done by the user, I can use solutions in these questions:
which detects keypresses, pastes events etc. But what if the data is data-bound dynamically, for example using frameworks such as AngularJS, MeteorJS etc. I must then add a function to be ran in the frameworks alongside the data-binding functions.
Is there a Javascript or jQuery method / event listener that I can use to detect content change, without adding it in the framework?