clausowitz Posted October 24, 2011 Share Posted October 24, 2011 Hi All, I use a cookie to save the status of divs on my page. When someone clicks the "hide" button then this code runs: function toggle5(showHideDiv, switchImgTag) { var ele = document.getElementById(showHideDiv); var imageEle = document.getElementById(switchImgTag); if(ele.style.display == "block") { ele.style.display = "none"; setCookie(showHideDiv,'false',9999); imageEle.innerHTML = '<img src="images/o.gif" title="Show this window" border="0" align="right">'; } else { ele.style.display = "block"; setCookie(showHideDiv,'true',9999); imageEle.innerHTML = '<img src="images/x.gif" title="Hide this window" border="0" align="right">'; } } Now the window is hidden. I save a cookie with the name of the div and the value "false". When the page is reloaded it should check which divs should be hidden and then hide them. How can I use javascript for this? Link to comment https://forums.phpfreaks.com/topic/249720-use-cookie-to-save-window-status-2/ Share on other sites More sharing options...
sunfighter Posted October 24, 2011 Share Posted October 24, 2011 I think I answered this on post Topic: remember div display status in cookie HERE: http://www.phpfreaks.com/forums/index.php?topic=346324.msg1634758#msg1634758 Link to comment https://forums.phpfreaks.com/topic/249720-use-cookie-to-save-window-status-2/#findComment-1281878 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.