I have a web page with a JS call to submit(). This works fine. However, I would like to provide the ability to preserve the page so that it could be resubmitted with minor modifications to the input data. It seems like I could save the form fields in session-length cookies and reload after the submit, but that seems a bit crude. What are my other options?
George