I’m developing a web application that uses AJAX technology to load the pages and each page contains a form that is submited via POST.
In order to use browser back and forward buttons I’m detecting hash changes and loading the specific page through location.hash.
How can I save the form parameters of each page that was visited? I’m not allowed to use to use GET instead of POST since this is a requirement of the client.
html5 localstorage is one of the solutions..
Links:
Demo and usage
How to Use..