John Kugelman
2009-10-20 03:55:02
+1
A:
As @John pointed out, on modern browsers you can use the HTML5 valid autocomplete
attribute, in your screenshot I see many textboxes, if you want to disable autocompletion on the whole form you can set this attribute directly at the form
element:
<form name="form1" id="form1" method="post" autocomplete="off"
action="http://www.example.com/form.action">
[...]
</form>
More info:
CMS
2009-10-20 04:11:28
@CMS: John had it right but I wanted to apply it globally to all text input controls. Applying `autocomplete` to the form completely disabled them all as I intended. Thanks
Sung Meister
2009-10-20 04:13:42