I want to send some data from one HTML page to another. I am sending the data through the query parameters like http://localhost/project/index.html?status=exist. The problem with this method is that data remains in the URL. Is there any other method to send the data across HTML pages using JavaScript or jquery.
I want to send some data from one HTML page to another. I am
Share
why don’t you store your values in HTML5 storage objects such as
sessionStorageorlocalStorage, visit HTML5 Storage Doc to get more details. Using this you can store intermediate values temporarily/permanently locally and then access your values later.To store values for a session:
or more permanently:
So you can store (temporarily) form data between multiple pages using HTML5 storage objects which you can even retain after reload..