vote up 5 vote down star
2

When using the xhtml1-transitional.dtd doctype, collecting a credit card number with the following HTML

<input type="text" id="cardNumber" name="cardNumber" autocomplete='off'/>

will flag a warning on the W3C validator:

there is no attribute "autocomplete".

Is there a W3C / standards way to disable browser auto-complete on sensitive fields in a form?

flag

1  
Are you sure that messing with the user's autocomplete setting is what you want to do? If they have it turned on, they probably like it. Autocomplete is a completely browser-side feature, much like the button that allows the user to change font size, etc. You shouldn't interfere with their wishes – rmeador Feb 24 at 16:25
1  
Even for something as sensitive as Credit card number? I can't think of very many people who would want that remembered - especially since auto-complete is on by default in most browsers. If they want it remembered that bad, they can use something that fills out forms like Google toolbar. – matt b Feb 24 at 19:16
Just because people use retarded Operating systems that cache form data in an unencrypted or easy to get at way doesnt mean you should break it for everyone. On OS/X this info is stored in a "wallet" that can only be unencrypted with the users username/password combination. I want it to remember this stuff, you will only make my life harder for the sake of windows users. Damn you! (: – corydoras Nov 23 at 6:17

7 Answers

vote up 13 vote down check

'autocomplete' is a non-standard attribute, I'm afraid.

Here is a good article from the MDC which explains the problems (and solutions) to form autocompletion. Microsoft has published something similar here, as well.

To be honest, if this is something important to your users, 'breaking' standards in this way seems appropriate. For example, Amazon uses the 'autocomplete' attribute quite a bit, and it seems to work well.

If you want to remove the warning entirely, you can use JavaScript to apply the attribute to browsers that support it (IE and Firfox are the important browsers) using someForm.setAttribute( "autocomplete", "off" ); someFormElm.setAttribute( "autocomplete", "off" );

Finally, if your site is using HTTPS, IE automatically turns off autocompletion (as do some other browsers, as far as I know).

link|flag
Looks like Firefox doesn't turn off autocomplete on https, but that's a useful piece of knowledge. Thanks! – matt b Feb 24 at 16:17
vote up 7 vote down

No, a good article is here https://wiki.mozilla.org/The_autocomplete_attribute_and_web_documents_using_XHTML

I would continue to use the invalid attribute. I think this is where pragmatism should win over validating.

link|flag
Can you recommend any articals on pragmatisium? :) – Phantom Watson Feb 24 at 15:52
Patronising means talking down to someone Phantom :) – TreeUK Feb 24 at 16:05
vote up 5 vote down

No, but browser auto-complete is often triggered by the field having the same name attribute as fields that were previously filled out. If you could rig up a clever way to have a randomized field name, autocomplete wouldn't be able to pull any previously entered values for the field.

If you were to give an input field a name like "email_<?= randomNumber() ?>", and then have the script that receives this data loop through the POST or GET variables looking for something matching the pattern "email_[some number]", you could pull this off, and this would have (practically) guaranteed success, regardless of browser.

link|flag
Interesting idea, thanks – matt b Feb 24 at 16:12
This would make automatic testing harder. – David Waters Feb 24 at 16:16
Would make automatic testing harder, only if your testing software cant cope check for / read fields that might have a random number appended to them. Might be time to upgrade your automated testing software. – corydoras Nov 23 at 6:15
vote up 5 vote down

How about setting it with javascript?

var e = document.getElementById('cardNumber');
e.autocomplete = 'off'; // Maybe should be false

It's not perfect but your HTML will be valid.

link|flag
I like this idea too, as a workaround – matt b Feb 24 at 19:20
vote up 4 vote down

I would be very surprised if W3C would have proposed a way that would work with (X)HTML4. The autocomplete feature is entirely browser-based, and was introduced during the last years (well after the HTML4 standard was written).

Wouldn't be surprised if HTML5 would have one, though.

Edit: As I thought, HTML5 does have that feature. To define your page as HTML5, use the following doctype (i.e: put this as the very first text in your source code). Note that not all browsers support this standard, as it's still in draft-form.

<!DOCTYPE html>
link|flag
vote up 2 vote down

HTML 4: No
HTML 5: Yes

link|flag
vote up 1 vote down

Not ideal, but you could change the id and name of the textbox each time you render it - you'd have to track it server side too so you could get the data out.

Not sure if this will work or not, was just a thought.

link|flag

Your Answer

Get an OpenID
or

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