vote up 2 vote down star

So the autocomplete="off" attribute is invalid HTML according to the w3c. Are there valid ways to do this in HTML, CSS or JavaScript? Or do we just have to plan on some of our forms not validating because we want to use this functionality.

flag

2 Answers

vote up 2 vote down check

autocomplete is valid HTML5 and is supported by all major browsers. What more do you want?

link|flag
HTML5 is still only proposed, so technically we still fail validation. But thanks for the heads up on HTML5 now including it. And as for the major browsers, Opera doesn't support it. – icco Aug 30 at 20:59
2  
A standard that isn't marked "Draft" – David Dorward Aug 30 at 20:59
vote up 1 vote down

Use javascript:
element.setAttribute("autocomplete","off");

link|flag
2  
This is nothing but a hacky work-around to please the validator, since it comes down to exactly the same thing in the DOM. – mercator Aug 30 at 20:59

Your Answer

Get an OpenID
or

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