Input Autocomplete="off" Not Working In Chrome Latest Version
when I click input type text fields the address saved in browser shows. I do't want to show it. autocomplete='off' not working in input fields within the form in chrome Version 75.
Solution 1:
Browsers not always respect autocomplete="off"
attribute.
For example when part of login form browsers will still try to save it.
If its not part of login form try autocomplete="new-password"
to prevent autocompletion to show. (as stated here)
If you use jQuery you might find this plugin useful
jquery.disableAutoFill
Post a Comment for "Input Autocomplete="off" Not Working In Chrome Latest Version"