Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
5  
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. – Álvaro G. Vicario Sep 29 '09 at 8:17
1  
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...' – Simon_Weaver Nov 22 '09 at 5:15
25  
Another reason you'd want to do this is so password, captcha, and credit card information doesn't get filled in. – Jeff Atwood Jun 6 '10 at 7:00
11  
also note that some penetration tests require disabling autocomplete on certain fields – Jeff Atwood Jun 6 '10 at 7:00
2  
Please think carefully about this. It makes sense to disable saving credit card information etc, but unless you are a bank, preventing password autofill can significantly decrease how many users bother to login to your site, especially on phones where entering passwords on cramped keyboards is a lot of effort. – John Nov 22 '12 at 10:48
show 1 more comment

17 Answers

up vote 492 down vote accepted
<input type="text" name="foo" autocomplete="off" />

See: https://developer.mozilla.org/en/How_to_Turn_Off_Form_Autocompletion

share|improve this answer
11  
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
4  
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 '10 at 0:49
26  
@Winston, you should put it both on the form, AND on the input element itself. That way you cover all the nonstandardness of browsers. – AviD Dec 13 '10 at 12:11
21  
And remember to disable your autocomplete = on extension (if you're using Chrome) before you test your webapp. Else you'll feel real silly like me. ;) – Jo Liss Feb 26 '11 at 0:57
show 3 more comments

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.

share|improve this answer
2  
An interesting alternative which may help with browsers that don't support the AutoComplete attribute! – Chris Roberts Nov 3 '10 at 9:50
1  
This is a much better solution compared to using autocomplete="off". All you have to do is generate a new name on every page load and save that name to a $_SESSION for future use: $_SESSION['codefield_name'] = md5(uniqid('auth', true)); – enchance Nov 13 '11 at 9:03
I have been looking for way to better secure my login/register forms and also disabling auto complete. This seems to be a great way of achieving some added security while using database sessions. I can now store the random value in the database and retrieve it after the form as been submitted. Thanks You! – Kyle C. Jan 11 at 5:27
<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.

share|improve this answer
I've noticed that adding it to the form element doesn't always prevent it from being applied to individual inputs within the form. Therefore it is probably best to place it on the input element directly. – sholsinger May 10 '10 at 16:48
6  
Actually @sholsinger, it's best to put it both on the form, AND on the input element itself. That way you cover all the nonstandardness of browsers. – AviD Dec 13 '10 at 12:11

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.

share|improve this answer
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_Weaver Nov 22 '09 at 5:13
4  
@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 '09 at 11:23

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.

share|improve this answer

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.

share|improve this answer

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!

share|improve this answer

In order to avoid the invalid XHTML you can set this attribute using javascript. Example using jQuery:

<input type="text" class="noAutoComplete" ... />

$(function() {
    $('.noAutoComplete').attr('autocomplete', 'off');
});

The problem is that users without javascript will do get the autocomplete functionality.

share|improve this answer
13  
this doesn't avoid invalid xhtml, it simply adds the invalid bit dynamically after you have checked it it declared it to be valid! – Andiih Apr 16 '11 at 15:53
1  
@Andiih @JustinP8: You are right. Do you validate your pages after JS has run? And if yes, how? – cherouvim Apr 22 '11 at 6:22
1  
I don't validate after JS has run, but I consider the goal to be to make the pages valid, not to have them validate, after all the point of valid pages isn't to display a validhtml badge, but to future proof them against the next release of browserX which may go all left field on invalid markup. – Andiih Apr 22 '11 at 12:30
1  
Work (or stop it working which is the goal): yes as above. But valid - no. – Andiih Apr 25 '11 at 10:46
1  
One more nail in the coffin of the very misguided xhtml disaster. HTML5 FTW. – user846945 Feb 3 '12 at 17:56
show 3 more comments

I think autocomplete=off is supported in HTML 5.

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 autcomplete=off.

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.

share|improve this answer
<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 :)

share|improve this answer
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. – pilsetnieks Oct 29 '08 at 12:04
7  
and it IS your problem if someone gets frauded and blames you because you were the only merchant they gave the card to – Simon_Weaver Nov 22 '09 at 5:11

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.

share|improve this answer

You may use in input.

For example;

<input type=text name="test" autocomplete="off" />
share|improve this answer

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.

share|improve this answer
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 '09 at 12:50
this messes up some of those automatic populating utilities – Simon_Weaver Nov 22 '09 at 5:11

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.

share|improve this answer
3  
+1. Sites that do this just for password fields are missing the point of the attribute entirely. – RJFalconer Nov 10 '11 at 17:19
9  
You are wrong. One anecdote: On tiny input fields, such as shopping cart qty adjustors, the previous-entries popup actually hides the textbox in at least one browser. Besides, why would you show them their previous qty amounts? Using this attribute makes the user's life more convenient. This is not a black and white issue. There are sitautions where it is good to use, and situations where it is bad to use. Had you urged people to just be careful with their use of this attribute and listed a few non-intuitive reasons why; this answer would be pretty useful. – Frankston Ralphington III Dec 7 '11 at 21:41

Adding the

autocomplete="off"

to the form tag will disable the browser autocomplete (what was previously typed into that field) from all input fields within that particular form.

Tested on:

  • Firefox 3.5, 4 BETA
  • Internet Explorer 8
  • Chrome
share|improve this answer

Three options: First: <input type='text' autocomplete = 'off' />

second: <form action='' autocomplete='off'>..

third (javascript code): inptElements.setAttibute(“autocomplete”,”off”);

share|improve this answer

try these too if just autocomplete="off" doesn't work:

autocorrect="off" autocapitalize="off" autocomplete="off"
share|improve this answer

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.

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