Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

Toggle DIV Visibility w/ Cookie


  • This topic is locked This topic is locked

#1
aLemmer

aLemmer

    Member

  • Member
  • PipPip
  • 19 posts
I have lots of dynamic content, sometimes a user might want to hide an item from being seen. There are automatically numbered IDs for each DIV that I wish to hide.

I'm currently using:

function toggle_visibility()
	{
		if (document.getElementById)
		{
			for (var i = 0; i < arguments.length; i++)
			{
				target = document.getElementById(arguments[i]);
				if (target.style.display == "none")
				{
					target.style.display = "";
				} else {
					target.style.display = "none";
				}
			}
		}
	}

However, I'd like use a cookie to remember the user's visibility preference.

I've been Google searching for hours to no avail; whoever provides a solution will make my day.
  • 0

Advertisements







Similar Topics

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP