1

I have multiple textboxes to enter credit card and security number for it. But I dont want browsers to remember which numbers the customer entered to them.

Note: The page is completely sending ajax request by using javascript for any operations.

Refers to : Is there a W3C valid way to disable autocomplete in a HTML form?

Community
  • 1
  • 1
Barış Velioğlu
  • 5,709
  • 15
  • 59
  • 105
  • please refer to http://stackoverflow.com/questions/582244/is-there-a-w3c-valid-way-to-disable-autocomplete-in-a-html-form – Devjosh Jun 21 '11 at 08:44

1 Answers1

3

I believe you can use the HTML attribute autocomplete with the value off.

<input ... autocomplete="off" />
Jamie Dixon
  • 53,019
  • 19
  • 125
  • 162