0

How to disable Remember password popup in all the browsers when logged in? I tried autocomplete="off", but it is not working fine.I need a help.

Thanks and Regards.

Harsha Biyani
  • 7,049
  • 9
  • 37
  • 61

1 Answers1

0

You can use SET Auto Complete property to off at form level or field level

<form action="something.php" method="post" autocomplete="off">

<input type="text" name="usrname" autocomplete="off">

for more refer to this link

Community
  • 1
  • 1
Learning
  • 19,469
  • 39
  • 180
  • 373