| Programming C# C++ (7) Delphi (604) Java (8) JavaScript (55) Document (8) Events (8) Strings (3) perl (40) php (12) VBScript (1) Visual Basic (1)
|
Prevent IE from offer to remember form data (a password)
Question: I don't want my users to be able to have my web form filled out by autocomplete. Can I disable it with JavaScript?Answer: Normally a user would have to configure their web browserTools->Internet Options->Content->Personal Information->Autocomplete where they can disable the saving of usernames and passwords. This cannot be done from JavaScript. You can try the property AUTOCOMPLETE in your HTML form:
Comments:
|