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,887
  • 8
  • 39
  • 54

2 Answers2

0

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

Pekka
  • 442,112
  • 142
  • 972
  • 1,088
0

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

Adam
  • 43,763
  • 16
  • 104
  • 144