I am using the html5 input type="number"
. I want to monitor this input for change, but:
- because in browsers that support it It gets spin controls I can't just monitor
.keyup
, - because I don't want to wait for it to lose focus I can't just monitor
.change
.
How can I monitor it so I catch all cases where it's value is changed?