How To Turn off Auto-Complete for Credit Card Input
By Angsuman Chakraborty, Gaea News NetworkFriday, October 21, 2005
This tip comes from Pete Freitag:
Always, always set autocomplete=”off” in the input tag. For example:
<input type=”text” name=”cc” autocomplete=”off” /&rt;
Otherwise, if people have the form completion feature turned on their credit card number will be stored in plain text somewhere on the computer (in the registry, or elsewhere).
Upside
Protects people using credit-cards from public computers like in library or cyber-cafe.
It works on Internet Explorer and Mozilla group of browsers.
Downside
Breaks XHTML validation. I agree with Pete that it is a good enough reason for writing invalid XHTML code. User safety comes first. If the standard is slow to adapt well…
YOUR VIEW POINT