-1

I have a registration (unique) form for which I want to disable the memory of the email and password field so that it won't autocomplete. Now I tried all methods. autocomplete=off for the fields, explicitly setting the field to blank as well as disabling caching with meta tag.

Nothing worked. Why is nothing possible when it is easy to understand that we need this functionality?

Niklas Rosencrantz
  • 25,640
  • 75
  • 229
  • 424

1 Answers1

2

it is easy to understand that we need this functionality

Wrong. You should not try to prevent the user from using useful features.

Browsers removed support for autocomplete="off" precisely because of people like you, who made the autocomplete feature less useful.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964