Skip to content Skip to sidebar Skip to footer

Do Not Let End-user Save Password

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 Ja

Solution 1:

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

Solution 2:

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

Post a Comment for "Do Not Let End-user Save Password"