Jump to content

Use cookie to save window status 2


clausowitz

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.