I have a slider connected to an input element. I have no control on the slider implementation. Whenever the slider is moved, the input element value is updated. I can check that with $('#my-input').val()
But, as documented here, I am not able to detect that change with the .change() event handler, because JavaScript manipulation of the input's value does not trigger that event.
My question is: how can I detect that the value in my input element has changed? What event - if any - is triggered in this case?