fishera
·
Aug 27, 2015
·
Viewed 11.3k times
·
Source
When I am trying to change password in Chrome, there is always a dropdown list with "Use password for:" options. Is it possible to remove it? I have tried autocomplete="off" and autocomplete="false" but without success.
According to the spec, if you expect a new password to be filled in (which is why you would not expect auto-completion for example), you should rather specify autocomplete="new-password" for the input field.
I have been running into issues with the chrome autofill behavior on several forms.
The fields in the form all have very common and accurate names, such as "email", "name", or "password", and they also have autocomplete="off" set.
The …
How can we disable Chrome's autofill feature on certain <input>s to prevent them from being automatically populated when the page loads?
At the same time I need to keep autocomplete enabled, so the user can still see …
I want to disable google chrome autocomplete / autofill / use password suggestion Something similar with autocomplete="off" (this one is not working).
The code is as following
loginpage.php
<form class="form-method" method="post">
<span class="form-fill">
&…