vote up 26 vote down star
5

How do you disable Autocomplete in the major browsers for a specific input (or form field)?

flag

75% accept rate

17 Answers

vote up 26 vote down check

<input type="text" name="foo" autocomplete="off">

doesn't that work on major browsers?

link|flag
1  
This did not work for me in Firefox 3.0.3 I had to put the autocomplete attribute in the FORM rather than the INPUT. – Winston Fassett Nov 12 '08 at 4:11
1  
Autocomplete is only defined in the HTML 5 standards, so it will break any validations you run against HTML 4.*... – Jrgns Jan 19 '09 at 8:04
Works a treat! :) – Nick Josevski Feb 24 at 0:49
vote up 13 vote down
<form name="form1" id="form1" method="post" 
autocomplete="off" action="http://www.example.com/form.cgi">

This will work in IE and FF, the downside is that it is not XHTML standard.

link|flag
vote up 6 vote down

In addition to autocomplete=off, you could also have your form fields names be randomized by the code that generates the page, perhaps by adding some session-specific string to the end of the names. When the form is submitted, you can strip that part off before processing them on the server side. This would prevent the web browser from finding context for your field and also might help prevent XSRF attacks because an attacker wouldn't be able to guess the field names for a form submission.

link|flag
vote up 4 vote down

As others have said, the answer is autocomplete="off"

However I think it's worth stating why it's a good idea to use this in certain cases as some answers to this and duplicate questions have suggested it's better not to turn if off.

Stopping browsers storing credit card numbers shouldn't be left to users. Too many users won't even realise it's a problem.

It's particularly important to turn it off on fields for credit card security codes. As this page states

"Never store the security code ... its value depends on the presumption that the only way to supply it is to read it from the physical credit card, proving that the person supplying it actually holds the card."

The problem is, if it's a public computer (cyber cafe, library etc) it's then easy for other users to steal your card details, and even on your own machine a malicious website could steal autocomplete data.

link|flag
2  
if i went to a site and it remembered my card in the dropdown i'd be very unhappy. id start to wonder how they could be so careless. – Simon Nov 22 at 5:13
2  
@Simon the annoying thing is you'll only realise it's happened if you revisit the site, and by then it could already be too late. – Sam Hasler Nov 23 at 11:23
vote up 2 vote down

On a related, or actually, on the completely opposite note - if you're the user of the aforementioned form and want to re-enable the autocomplete functionality, use the 'remember password' bookmarklet from this bookmarklets page. It removes all 'autocomplete="off"' attributes from all forms on the page. Keep fighting the good fight!

link|flag
vote up 1 vote down

Just set autocomplete="off". There is a very good reason for doing this: You want to provide your own autocomplete functionality!

I've used this on at least two occasions.

link|flag
vote up 1 vote down

We did actually use sasb's idea for one site. It was a medical software web app to run a doctor's office. However, many of our clients were surgeons who used lots of different workstations, including semi-public terminals. So, they wanted to make sure that a doctor who doesn't understand the implication of auto-saved passwords or isn't paying attention can't accidentally leave their login info easily accessible. Of course, this was before the idea of private browsing that is starting to be featured in IE8, FF3.1, etc. Even so, many physicians are forced to use old school browsers in hospitals with IT that won't change.

So, we had the login page generate random field names that would only work for that post. Yes, it's less convenient, but it's just hitting the user over the head about not storing login information on public terminals.

link|flag
vote up 0 vote down

Use a non-standard name and id for the fields, so rather than "name" have "name_". Browsers will then not see it as being the name field. The best part about it is that you can do this to some but not all fields and it will autocomplete some but not all fields.

link|flag
The problem with this is if any other sites use "name_" to achieve the same objective then you're back to square one. – ConroyP Oct 20 '08 at 9:01
so make it "mysite_name". If anyone else is using that, I'd ask them questions... – Steve Perks May 13 at 12:50
this messes up some of those automatic populating utilities – Simon Nov 22 at 5:11
vote up 0 vote down

@Kevin: Indeed. I was just providing an example.

link|flag
vote up 0 vote down

@Sean edit: general comment

Another reason you'd want to do this is so password, captcha, and credit card information doesn't get filled in.

link|flag
vote up 0 vote down

I disagree Soeren. It all comes down to liability/security vs. convenience

You have the choice to use a feature. It's up to you to decide whether you want to implement more convenience or more feature.

link|flag
vote up 0 vote down

@Sören Kuklau don't be so narrow minded about this.... for example, on a captcha form field, you don't want the browser to remember the version

Also, having a browser remember form values is a classic way of ending up with bad (automcomplete remembered) data entry through this. There are times this is really useful, but it can also cause problems like this.

link|flag
vote up 0 vote down

Sören Kuklau, you are way off by inststing that it should be not used. As with everything - use it where it makes sense. The simple reason that a computer in a Netcafe can be used to access accounts, and that browser functions can upon typing the first letter not only autocomplete a field but also recover the content of the next field, such as passwords, means you must have the ability to turn this off. Its simply not safe in some einvironment. Now you may know how to enable and disable this - but others don't. And while this function SHOULD be off on public computers, it isn't always. Therefore to have the ability to turn this off is an absolute must have. But of course if you only think about your own system, it is a different but somewhat more narrow minded view, which shouldn't be imposed on everyone else. Or do you want your user names and passwords memorized on public systems?

link|flag
vote up 0 vote down

One more usage includes administration forms to create or edit users; you don't want the form pre-filled with your current credentials.

This also applies to password change forms, esp. those designed as leave blank to keep current password.

link|flag
vote up 0 vote down

In some systems where testers have to manually enter a lot of information over and over it might be useful to have the option as configurable so that when testing you can disable it and just hit 'tab > down arrow > tab > down arrow etc...'

link|flag
vote up -1 vote down
<form autocomplete="off" ...

was a none standard way to do this (I think mozilla and IE still support it) but messing with the users expectations is normally a bad idea.

If the user enters their credit card details into a form and then let's someone else use that browser it's not your concern :)

link|flag
As far as I remember, most browsers don't use autocomplete even if it is on when doing something over HTTPS. If your users enter their credit card details into a form that will be sent over HTTP, they might have bigger problems than autocomplete. – Nouveau Oct 29 '08 at 12:04
and it IS your problem if someone gets frauded and blames you because you were the only merchant they gave the card to – Simon Nov 22 at 5:11
vote up -5 vote down

Why would you make your user's life less convenient?

"Passwords / credit card data / etc. should not be saved" is a bad argument: with autocomplete on, browsers in Mac OS X store such values in an encrypted database with per-application permissions. Conversely, what's the realistic effect of autocomplete=off? The user is going to write it in an unencrypted text file, or better yet, on a post-it note attached to the screen.

Good thing there's bookmarklets like the one Antti mentioned, and patches to make the engine ignore the attribute altogether.

Seriously, I urge you to reconsider using this attribute. It does not benefit anyone.

link|flag

Your Answer

Get an OpenID
or
never shown

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