0

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

ANJYR
  • 2,583
  • 6
  • 39
  • 60
  • Have you tried setting autocomplete as new-password? [like this answer on stackoverflow](https://stackoverflow.com/a/30976223/6594105) – Iury Piva Dec 21 '17 at 12:44

1 Answers1

2

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

Confused
  • 53
  • 9