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!
views:
133answers:
2
+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
2010-03-21 09:15:35
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
2010-03-21 09:53:57
I understand that it's not a caching matter, but a Firefox specific related issue. Thanks.
Nir
2010-03-22 11:47:04