views:

133

answers:

2

When I refresh a page with Firefox, the values of the check boxes, input fields etc. are kept. Is there a way to make Firefox not keep them, using a meta tag without JavaScript? Thanks!

+1  A: 

For a input tag there's the attribute autocomplete you can set:

<input type="text" autocomplete="off" />

You can use autocomplete for a form too.

True Soft
A: 

Try this list of Meta tags.

http://www.i18nguy.com/markup/metatags.html

To prevent page caching use the CACHE-CONTROL, EXPIRES, and PRAGMA NO-CACHE tags to prevent caching.

Use all three types to guarantee cross browser behaviour.

FacilityDerek
I understand that it's not a caching matter, but a Firefox specific related issue. Thanks.
Nir