Let's say I'm a very worried bank and I don't want my customers to use autofill for their online banking password.
I'd like to write a document.ready handler (or capture some other event) that would simply look like
document.ready = function() {
$("#password").val("");
}
so that any value in the password will be cleared out when the document is fully loaded.
Is this likely to fire AFTER autofill has filled in the form? Or will some autofill plugins fire after the document is ready and fill in the password anyway?
Is there a Javascript event I can handle that represents the autofill logic occuring?