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,593
  • 8
  • 37
  • 51

2 Answers2

0

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

Pekka
  • 418,526
  • 129
  • 929
  • 1,058
0

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

Adam
  • 39,529
  • 15
  • 101
  • 139