It's a very useful feature that the browser remembers values what users have input to forms. Perhaps too useful! I have a web-app that asks questions from people. There I ought to break this feature I've seen mainly on Firefox. Is there a way to achieve this without too much sweating?
|
|
|||
|
closed as exact duplicate by nickf Oct 20 '08 at 13:05 |
|
|
I assume you are wanting to disable autocomplete on form fields, check this answer below http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field |
||
|
|
|
|
You can set the autocomplete attribute of the form itself (i.e. |
||
|
|
|
|
you can set the autocomplete attribute to off, as follows:
it's a nonstandard extension to HTML, but it's supported by all the major browsers. |
||
|
|
