Skip to content Skip to sidebar Skip to footer

Navigating Back To Search Page With Same State (javascript)

How do I, using JavaScript, retain the state of the search page, when a user clicks into a search result, but then goes back to the main search page. e.g. HTML: https://startech-en

Solution 1:

You can simply do it by saving the data in users device . You can do it by using cookies or by localStorage. I prefer localStorage because users can deny cookies easily. Like this-

localStorage.setItem("tags",tagItemsInAnArray);

And laterlocalStorage.getItem("tags");

Solution 2:

You can use localStorage to keep the search filter data. The concept is to keep all filter data in an array and keep that array in the localStorage of the browser before any redirection. Here is an official documentation with implementation of localStorage.

Here is a demo:

//before redirectionlet filterData = [];
localStorage.setItem("searchFilter", JSON.stringify(filterData));

//after page-loadlet cachedFilterData= JSON.parse(localStorage.getItem("searchFilter"));
if(cachedFilterData.length>0){
    //cache data exist
}

//when you need to delete cachelocalStorage.removeItem("searchFilter");

Post a Comment for "Navigating Back To Search Page With Same State (javascript)"