How do you disable Autocomplete in the major browsers for a specific input (or form field)?
|
See: https://developer.mozilla.org/en/How_to_Turn_Off_Form_Autocompletion |
|||||||||||||||||||
|
|
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. |
|||||||||||
|
This will work in IE and FF, the downside is that it is not XHTML standard. |
|||||||
|
|
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. |
|||||||||
|
|
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. |
|||
|
|
|
I'd have to beg to differ with those answers that say to avoid disabling auto-complete. The first thing to bring up is that auto-complete not being explicitly disabled on login form fields is a PCI-DSS fail. In addition, if a users' local machine is compromised then any autocomplete data can be trivially obtained by an attacker due to it being stored in the clear. There is certainly an argument for usability, however there's a very fine balance when it comes to which form fields should have autocomplete disabled and which should not. I wrote an article on why autocomplete is bad for security, it's located at http://www.securatek.net/2011/09/16/why-browser-autocomplete-is-bad-for-security/ and is hopefully worth a quick read. |
|||
|
|
|
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! |
|||
|
|
|
In order to avoid the invalid XHTML you can set this attribute using javascript. Example using jQuery:
The problem is that users without javascript will do get the autocomplete functionality. |
|||||||||||||||||||||
|
|
I think Ask yourself why you want to do this though - it may make sense in some situations but don't do it just for the sake of doing it. It's less convenient for users and not even a security issue in OS X (mentioned by Soren below). If you're worried about people having their passwords stolen remotely - a keystroke logger could still do it even though your app uses As a user who chooses to have a browser remember (most of) my information, I'd find it annoying if your site didn't remember mine. |
||||
|
|
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 :) |
|||||||
|
|
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. |
|||
|
|
|
You may use in input. For example;
|
|||
|
|
|
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. |
|||||||
|
|
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. |
|||||||||
|
|
Adding the
to the form tag will disable the browser autocomplete (what was previously typed into that field) from all Tested on:
|
||||
|
|
|
Three options:
First: second: third (javascript code): |
|||
|
|
|
try these too if just
|
||||
|
|
protected by Richard J. Ross III Apr 15 at 20:35
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
