vote up 2 vote down star

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?

flag

64% accept rate
Should I close this down since there's already a question that asks the same question with different wording? – Cheery Oct 20 '08 at 12:37

closed as exact duplicate by nickf Oct 20 '08 at 13:05

3 Answers

vote up 3 vote down check

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

link|flag
vote up 1 vote down

You can set the autocomplete attribute of the form itself (i.e. autocomplete="off") - I don't know how standard or widely-supported this is though, and it applies to the whole form rather than individual fields.

link|flag
vote up 6 vote down

you can set the autocomplete attribute to off, as follows:

 <input name="answer" autocomplete="off">

it's a nonstandard extension to HTML, but it's supported by all the major browsers.

link|flag

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