Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best Way For Back Button To Leave Form Data

I'm creating a web page based on user input from a form. After the user sees the generated page I want to allow them to press the back button and make changes to the form. I would like to display the form as they had filled it out previously. What is the best way to get this behavior (with cross browser support)?

like image 639
Brian Fisher Avatar asked Mar 01 '23 00:03

Brian Fisher


2 Answers

After the user sees the generated page I want to allow them to press the back button and make changes to the form. I would like to display the form as they had filled it out previously.

There is no need to add any clever fancy code; that is what browsers will do by default, unless you take active steps to prevent it, such as:

  • breaking the cache with Cache-Control/Pragma headers
  • generating the form page itself from the response to a POST (use POST-Redirect-GET instead)
  • generating the form elements from script

Cookie solutions are fragile and need special handling if you don't want two tabs open at once to get very confused. Make it easy for yourself: let the browser do the work.

like image 67
bobince Avatar answered Mar 07 '23 08:03

bobince


JQuery has a nice cookie plugin which i used to keep exam data while the user browsed the site for the answers in place.

like image 34
Ólafur Waage Avatar answered Mar 07 '23 08:03

Ólafur Waage