2

Possible Duplicate:
Disable browser ‘Save Password’ functionality

Is there a standard way to prevent the end-user's web browser from saving a password using HTML or maybe JavaScript?

Community
  • 1
  • 1
muncherelli
  • 2,759
  • 8
  • 38
  • 53

2 Answers2

0

Use the non-standard autocomplete="off". Your HTML won't validate with it, though.

Pekka
  • 431,103
  • 135
  • 960
  • 1,075
0

In HTML5 you can use autocomplete="off" but that will only work on browsers that support it

Adam
  • 41,954
  • 16
  • 104
  • 142