22
Jun
Learn how to make page not to cache(preserve) input values
Most browser cache form input values and when user refreshes page, the inputs have same values. To stop browsers putting data in where it shouldn’t you can add the autocomplete attribute to the form tag. See below example.
<form autocomplete="off" ...></form>