I need an event handler which fires when the value of an input field changes. No matter if the value is changed by the "user" or by "code". This listeners do work, if value changed by user, but not if it is changed by code.
$('#myInput').on('change paste input', function() { })
My specific problem is that an javascript calendar plugin changes the value of my input field. The "input" event is than not fired because the change is made by code.
Thanks for help.