Event when input value is changed by JavaScript?
There is no built-in event for that. You have at least four choices: Any time you change $input.value in code, call the code you want triggered by the change Poll for changes Give yourself a method you use to change the value, which will also do notifications (Variant of #3) Give yourself a property you … Read more