How do you disable Autocomplete in the major browsers for a specific input (or form field)?
|
5
|
|||
|
|
|
|
<input type="text" name="foo" autocomplete="off"> doesn't that work on major browsers? |
||||||||||
|
|
|
This will work in IE and FF, the downside is that it is not XHTML standard. |
|||
|
|
|
|
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. |
||
|
|
|
|
As others have said, the answer is 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
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. |
||||||||
|
|
|
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! |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||||||
|
|
|
@Kevin: Indeed. I was just providing an example. |
||
|
|
|
|
Another reason you'd want to do this is so password, captcha, and credit card information doesn't get filled in. |
|||
|
|
|
|
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. |
||
|
|
|
|
@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. |
||
|
|
|
|
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? |
||
|
|
|
|
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. |
||
|
|
|
|
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...' |
||
|
|
|
|
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 :) |
||||
|
|
|
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 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. |
||
|
|
