As the image explains, I have put
autocomplete='off'
on the input, however Firefox is still populating the saved username.
Asked
Active
Viewed 165 times
0

Ben
- 8,894
- 7
- 44
- 80

Abhishek Bhusari
- 3
- 2
-
1You may be seeing a cached page. Try Ctrl+F5 to fully refresh the page. – Paul Sasik Jun 12 '15 at 14:41
-
2[Disable Firefox's Auto-fill](http://stackoverflow.com/questions/6487970/disable-firefoxs-auto-fill) – fatrex Jun 12 '15 at 14:41
-
Thats fine, I can disable firefox's autofill but can I specifically force any input field not to autofill even if FF's autofill is enabled? – Abhishek Bhusari Jun 15 '15 at 04:50
-
Hey, I got a solution for this! put a hidden empty text field after the password or email type input field and it rocks! – Abhishek Bhusari Jun 15 '15 at 12:00
-
Thanks to all of you – Abhishek Bhusari Jun 15 '15 at 12:06
1 Answers
0
I got a solution for this! put a hidden empty text field after the password or email type input field and it rocks!
Autocomplete has been disabled for password type input fields. The above links mention that respectively for FireFox and IE, but I see that setting autocomplete to off for form too is not working
Use below code
<input name="test" type="text" style="display:none">

Abhishek Bhusari
- 3
- 2