Name: Anonymous 2006-02-15 12:24
At the moment I have a script that I would like to work something similar to the world4ch display on the main 4chan navigation, only have it use cookies. I want it to get information from a cookie and then if the cookie does not equal 1, do not display the section of the page. The code I currently have is:
var tog=document.getElementById("post");
var modmode = getCookie("modmode");
if(modmode != 1)
{
tog.style.display="none";
}
and I have no idea as to why it won't work.
var tog=document.getElementById("post");
var modmode = getCookie("modmode");
if(modmode != 1)
{
tog.style.display="none";
}
and I have no idea as to why it won't work.