is there a way to store a class name in localstorage ?? If there is a way how to do it ??
There is a panel which is hidden at the beginning, by clicking on the button panel shows, i would like to store information, after click, whether the panel is hidden or shown
my jquery code
$("#button").click(function () {
$("#searchWraper").slideToggle(1000);
});
Modify your code to add a callback
Making use of these methods to store information in LocalStorage (with Cookie fallback…)