vote up 1 vote down star

I have a simple text and password input with default username and password filled out. If I put focus on the text input and then remove the focus, it erases my password input for some reason. This only seems to happen on firefox. I thought it would be my surrounding code, but I tried moving everything to a blank page and stripped everything to the bare bones with no luck:

<form>
<input type="text" value="username" />
<input type="password" value="password" />
</form>

A few things I noticed were it doesn't matter what value I change the username and password to, I still get this problem. If I remove the opening form tag, this problem disappears. If I swap it around and put the password first then followed by the username, it will work... Another weird thing is if I run this file from my operating system path the problem also disappears. Anyone have any idea what could be the problem?

flag

50% accept rate
Is there any JavaScript inline or linked in the code you are executing? – DroidIn.net Nov 1 at 6:17
On my original page there is, but I also tested it on a completely blank page, with and without a doctype, but the problem was still there. – Roger Nov 1 at 15:42

1 Answer

vote up 1 vote down

Sounds like Firefox's form field auto-completion is getting in your way. You can disable it by adding autocomplete="off" to the <input> fields or to the <form> element to disable it for all fields.

link|flag
Hmm, this "somewhat" works. After using autocomplete="off", what happens is that when I put focus on the username, now the password doesn't get erased. However, once I type anything in the username and lose focus, it erases the password again. This is puzzling because I tried a few other sites and this doesn't happen. – Roger Nov 1 at 15:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.