Auto complete does not work in firefox 38

I have a profile on my site in which the password field is automatically filled in even after I gave auto complete = "off" to the text field, as well as to the form. After that, I also got an auto-complete password field.

<input name="password" id="password" type="password" autocomplete="off" /> 
+5
source share
4 answers

Try this instead of using any hidden hidden variables in the form.

 <input name="password" id="password" type="password" autocomplete="false" readonly onfocus="this.removeAttribute('readonly');" /> 
+8
source

Finally, I found a solution for this question. We can make the field read-only and editable when focusing.

 <input name="password" id="password" type="password" readonly onfocus="this.removeAttribute('readonly');" /> 
+2
source

There is an interesting hack in this (and some good explanations):

Basically you add an extra input field to confuse the browser.

+1
source

Autocomplete does not work in any form

If you find that Firefox does not save the text that you enter into the forms, follow the instructions below.

Check Firefox Settings Make sure that Firefox is configured to remember entries in the form and that saved entries in the form are not automatically cleared:

Press the "New Fx" menu button and select "Options."

Select the Privacy panel.

Installs Firefox: use user preferences for history.

Make sure the "Remember Search and Form History" option is selected.

Enabling autocomplete forms also allows Firefox to store search history for the search bar.

Find Clear History when Firefox closes. If selected:

Click the "Settings ..." button.

Make sure the form and search history are not selected.

Click OK.

Close the about: preferences page.

LINK

0
source

All Articles