Say I have Page A
that has a cool POST
form
that submits and then goes to Page Z
.
Right now on Page A
, I have autocomplete='off'
on all forms
and all form inputs
.
Currently:
- Go to
Page A
and submit theform
with data. - See
Page Z
and hit theback button
on the browser. Page A
has the form displayed with submitted data (from 1).
How do I clear the form data
from Page A
or prevent it from being shown when I click the back button
on Page Z
?
Note: the form data is being cleared in Firefox
(except checkboxes) and Chrome
, but not in IE
(using 10 to debug). I would like all the form data from all types of input to be empty.