In my layout I have a navigation bar with a few elements in it. The
elements can be toggled on or off and thereby reveal or conceal some
subtopics. I store the state of the toggle for the navigation elements
in the session.
When the page is reloaded, the navigation items are collapsed because
the css for display: none is set by default in the html for the
navigation elements. Is there a good way to pull the state of the
navigation elements from the session and reset the default css? I’d
like to restore the navigation to the way the user left it.
If you stored the data about which views were open in cookies (rather
than sessions, which inly stores a session id in the cookie) then you
could use Javascript to read the cookies onload: http://www.quirksmode.org/js/cookies.html