ANJYR
ANJYR

Reputation: 2623

Disable Chrome suggested Autocomplete

I am working on Webform and I disable autocomplete from Form tag as well as input fields through autocomplete="off" & autocomplete="false". Google chrome giving a feature to save form data.

enter image description here

when I filling data in the form suggested data come under textbox. enter image description here

My concern is if I disable autocomplete in form tag why it's suggesting me and how to disable in my webform.

I have read already asked question but that is not helpful for me LINK

Upvotes: 1

Views: 3554

Answers (1)

Confused
Confused

Reputation: 53

Chrome now ignores autocomplete="off",

A solution that worked for me in the past came from this answer

<input type="text" name="email">
<input type="password" name="password" autocomplete="new-password">

Check this answer for reasons why

Upvotes: 2

Related Questions