1

I have used multiple permutation and combination to disable Save Password notification in Browser one of them is autocomplete="off". But it doesn't work in my system. Please, suggest me !!!

  • don't use type="password" maybe? – Jonas Wilms Jun 06 '17 at 09:53
  • or you could use https – Herr Derb Jun 06 '17 at 09:55
  • 1
    Why would you want to force it disabled? It's a handy feature and should be left to the user whether to accept it or not. I would hate a site that prevents Chrome from remembering my password and force me to enter it every time. Nobody likes passwords. – Jeremy Thille Jun 06 '17 at 09:56
  • 1
    This question have already been answered here: https://stackoverflow.com/questions/32369/disable-browser-save-password-functionality – user1532132 Jun 06 '17 at 09:56
  • If we are using any banking site, then in this scenario we never get Save Password because it might affect the security of application or user. – Pramod Khamkar Jun 06 '17 at 09:58
  • Well, my password is saved on my banking site, I appreciate it and I would hate my bank if it forced me to type it every time. Why don't you allow this freedom to the user, instead of forcing people to comply to your choices? – Jeremy Thille Jun 06 '17 at 10:00

1 Answers1

1

Unfortunately this is still not possible :( Users have to manually turn this off...

But you can stop the popup from showing up: How? Don't use type="password"

Use

type="text"

Instead

ImmanuelNL
  • 31
  • 5
  • Not a good solution IMHO since the text you enter is not hidden. – C.Champagne Jun 06 '17 at 11:07
  • @C.Champagne it's how you can disable it, but disabling the popup in this way isn't the most efficient because the text isn't hidden any more. But if it isn't such a NOT GOOD solution can you than please give me a better one – ImmanuelNL Jun 07 '17 at 05:21
  • Sorry I missed the fact the OP mentioned that `autocomplete="off"` doesn't work. I think however that it is better to leave the situation 'as-is' – C.Champagne Jun 07 '17 at 09:24