Good morning, I'm having problems with Google Chrome and the autocomplete.
I do not want some fields of my form to be autocompleted and I added the attribute: autocomplete="off"
This in Chrome is not working, but in other browsers such as Firefox if How can I prevent only some fields from being completed?
I have seen by internet as an alternative solution to add autocomplete="off"
to the label <form>
, but this does not work for me, since many fields if I would like them to be autocompleted ...
<form id="formulario" action="" method="">
<input type="text" name="nombre" placeholder="Nombre..." />
<input type="text" name="apellidos" placeholder="Apellidos..." />
<input type="email" name="email" placeholder="Correo electrónico..." />
<input type="text" name="codigo" placeholder="Código promocional..." autocomplete="off" />
</form>
How do I prevent a single input field from being autocompleted in Chrome?