I'm doing some client-side validation with https://github.com/jzaefferer/jquery-validation/
It works fine unless the Chrome autofill is triggered, at which point the validation plugin does not recognize changes to the input values and does not trigger.
I am not allowed to use autocomplete="off" and I'm not sure that would prevent the autofill anyway.
Is there any way I can universally listen for browser autofill events?
As i can test it, input
event is fired:
$('input').on('input',function(){
console.log(this.value);
});
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