hello the autocomplete=off doesn't work in chrome To disable autocompletion in forms, you can set the autocomplete attribute to "off": but i tried "nope" / "fake" / "random" but not working it work only to captcha input
Asked
Active
Viewed 636 times
0
-
@GovindParashar you're question as been closed for duplicated (for mine) – Arthur Aug 05 '19 at 13:32
-
but they response not work for me :( – chaima Aug 05 '19 at 13:36
1 Answers
0
<input type="password" name="whatever" autocomplete="new-password" />
This will get you close to what you are trying to do, but Chrome seemingly is trying to make it as hard as possible to control the behavior in your site. So there are quite a few ways to have this not act as intended.

the_legitTDM
- 353
- 5
- 21
-
-
-
it only work for a date input and captcha, i can't understand whay. and i don't have a passowrd input in my form – chaima Aug 05 '19 at 14:04
-
1i added a hidden with autocomplete="on" as a first children element of the form. so that's working now :D – chaima Aug 05 '19 at 14:32
-
-