vote up 4 vote down star

I remember seeing a way to have an <input type="password" /> such that the browser will not prompt the user to save the password. But I'm drawing a blank (its late...). Is there an HTML attribute or some JavaScript trick that will do this?

flag

Duplicate of stackoverflow.com/questions/32369/… – Jon Skeet Jan 22 at 7:16

2 Answers

vote up 6 vote down check

Try using autocomplete="off". Not sure if every browser supports it, though. MSDN docs here.

link|flag
note that this will not validate. – Jan Hancic Jan 22 at 7:18
Great, now I can go to sleep :) – David Thomas Garcia Jan 22 at 7:29
vote up 9 vote down

<input type="password" autocomplete="off" />

I'd just like to add that as a user I think this is very annoying and a hassle to overcome. I strongly recommend against using this as it will more than likely aggravate your users.

Passwords are already not stored in the MRU, and correctly configured public machines will not even save the username.

link|flag
+1 for "don't annoy your users". That's exactly what this kind of feature does. Just like sites that force off caching so the back button clears the form. EXTREMELY irritating. – cletus Jan 22 at 7:29
+1 I completely agree. Its for an administrator edit customer profile page where you only enter a password if you intend to change it. That way the administrators don't change the password every time they go to edit the customer's information. – David Thomas Garcia Jan 22 at 16:12
It is very useful for credit card number fields. PayPal's form is stored in every browser, and anyone using your computer can re-input all the data, so you have to manually go and delete all remembered fields. – HeavyWave Nov 16 at 11:48

Your Answer

Get an OpenID
or

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