I am wondering why the backspace/ delete button does not detect a keyup event in jQuery.
I find this odd as it is useful and should be supported. Are there any alternatives to this?
This is only happening in Android - Chrome.
You can actually fix this by attaching an event listener to the input.
var inputBox = document.getElementById('inputId');
inputBox.addEventListener(‘input’, function() {
exampleFunc();
}, false);
Cheers
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With