Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've just been given a requirement to prevent browsers from saving data entered into specific form fields. It's been years since I've done web dev, and this is a relatively new capability. I was able to find the form field property autocomplete="off", but I can't seem to find any documentation indicating which browsers support it. Can anyone point me in the right direction of a chart of form attributes and browser compatibility?

share|improve this question
Related: stackoverflow.com/questions/582244/… – ChristopheD Oct 5 '10 at 22:48

3 Answers

up vote 39 down vote accepted

I can only offer anecdotal evidence, but I've yet to come across a browser that fails to respect autocomplete="off", this experience covers:

  • Firefox 1.5+ (Windows and Ubuntu)
  • Opera 6+ (Windows and Ubuntu)
  • Chrome v2+ (Windows and Ubuntu)
  • Epiphany 0.8 (ish) (Ubuntu)
  • Midori (I can't remember which version)
  • Safari v1+ (Windows)
  • IE 4 - 8, Windows.

I'm aware that Greasemonkey scripts, and presumably other user-scripts, can disable the autocomplete setting.

There's a couple of articles I found that might be useful to you:

  1. How to turn off form auto-completion
  2. Using auto-complete in html forms
share|improve this answer
Thanks for those articles. I know that there are scripts that can disable the setting, but there's only so much we can do. If someone wants their browser to save their credit card info on their personal computer, there's not much we can do to prevent it. We're really trying to keep data from being saved on shared machines. – EmmyS Oct 6 '10 at 14:20
@EmmyS, no that's true. It'd take a fairly tech-aware user to go to the trouble of implementing an anti-auto-complete solution, and what users do with your site on their machines is down to them, not you. =) – David Thomas Oct 6 '10 at 14:29
@DavidThomas - Thanks for the list of compatibility, couldn't find a good one from caniuse, w3c, or elsewhere. :) +1 – Travis J Nov 8 '12 at 20:56

If you're able to use JavaScript and jQuery, you can place this on load of the html:

$('#theform input').val('');
share|improve this answer
This is being used inside Joomla, which uses Mootools - there are conflicts with mootools and jquery, so I can't do that. I'll keep it in mind for future reference, though. – EmmyS Oct 6 '10 at 14:09
refering to mootools documentation you can do $$('.emptyThisInForm').each(function(el){ el.value = ''; }); – ITroubs Oct 6 '10 at 20:04

Warning: My answer below is not objective and sparsely constructive, I should drink less coffee, thanks for the note.

It is technically not possible to prevent browsers from saving data. And it would be a security hazard even trying. I can’t count the number of people I know (me included) who have a "password.txt" on their desktop where all their passwords are written. It is either that, either using the same password for every websites (which is even worse in matter of security), or using the same password as the login name, or so. By trying and securing what can’t be "secured", you just make it worse.

If your company asks you to do so, please, as an engineer, make them understanding their mistake, it will save your company some time and money. If they really need something more secure, maybe password protected account is not enough. Try introducing other security solutions like certificates, tokens…

If your company doesn’t trust the user not clicking on "remember password" in an internet café, why would you give this user an access to his accounts through password credentials?

There will always be mistakes (or inattentive people). There can’t be 0% risk. Please, do not spoil ergonomics in favour of an inefficient security.

How many time did I spent typing and typing passwords (or worse mouse clicking on stupid screen pads, who thought about this awful idea ? I have a 100€ keyboard, what for?), there are some websites on which I click the "forgot password" every time I need to connect.

share|improve this answer
2  
You'll note that "password" was never mentioned in my original post... it's not only passwords that a developer might like to prevent users from saving. – EmmyS Dec 20 '12 at 16:17
This answer is a little overboard and off topic, and based purely on personal preference. I'm also unsure of how it would be a security hazard using "autocomplete='off'". There are a lot of use cases for disabling autocomplete. – Tom Thorogood Feb 6 at 16:26
There are nice extensions, such as autocomplete=on extension for Chrome, that disable the "functionality". – SMeznaric May 1 at 18:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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