Is there a way to prevent autocomplete? Internet Explorer allows autocomplete="off" but Chrome doesn't.
My problem is that I have a web app, where to login the input is name="password" and in the settings you can show some private information that requires password, which then has the name="password". But since people save their login informations, the password is pre-provided. It's really a fault on the user side, but I want to mask it with an empty field if I can, but I don't want to change input names.
Chrome should still allow you to do an autocomplete on the entire form (if that is what you want)
<form action=".." method="..." autocomplete="off">
... rest of normal controls like
<input type="text" name="email">
</form>
The other solutions I have seen is hiding a password field on the page as people have reported that Chrome will only autocomplete the first password field it finds... Try turning off autocomplete on the entire form first.