I faced a very tiny issue when using Edge.
<input type="number" value="5" step="1" min="1">
$("input").on("input", function(event) {
alert(event.type);
})
when I use keys (up/down) to change the value - event is triggered in Chrome/FF but not in Edge therefore I am considering to use 2 events instead: keyup mouseup but I do not really like it.
Here is an example (but the issue is only reproduced in Edge): https://jsfiddle.net/ds33ux75/5/
Is there any better way to catch value change in field live?