Javascript menu remembering position - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:45:49Z http://stackoverflow.com/feeds/question/290585 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/290585/javascript-menu-remembering-position 1 Javascript menu remembering position mike nvck 2008-11-14T16:11:21Z 2008-11-14T16:19:08Z <p>Hi, </p> <p>I am currently working on a JS menu for a web app. It consists of two bars, the fixed main one and the submenu which is activated (display:block from display:none) by Javascript function. The selected options of the main menu as well as the submenu are also highlighted by adding a class="main_on" and class="sub_on" by onclick event. Is there way of remembering which submenu was displayed and which options were currently classed as active when the user hits F5 or the page reloads itself? I am looking for a non-cookie and non-database approach if possible.</p> <p>Thanks,</p> <p>Mike</p> http://stackoverflow.com/questions/290585/javascript-menu-remembering-position/290616#290616 5 Answer by Peter for Javascript menu remembering position Peter 2008-11-14T16:19:08Z 2008-11-14T16:19:08Z <p>You can make the link/element that is clicked (for the onclick event) set the URL hash in the address bar. (i.e. <a href="http://server.name/page#URLhash" rel="nofollow">http://server.name/page#URLhash</a>) If it's a link you just have to adjust the HREF property, otherwise you may have to manipulate with window.location.</p> <p>This sets the current state. When the page (re)loads, check the value of the URL hash. See <a href="http://developer.mozilla.org/en/DOM/window.location" rel="nofollow">http://developer.mozilla.org/en/DOM/window.location</a> for details on how to access it. Provided the URL hash is still in the address bar, you'll be able to get the value.</p> <p>Then use the value to determine which menu to make active. Thus you can restore the state this way.</p> <p>There are some differences between browsers. Do a search on "Ajax History", in which some people have used the URL hash to preserve the state after Ajax actions. Not the exact same problem you are trying to solve but similar. Check out RSH: <a href="http://code.google.com/p/reallysimplehistory/" rel="nofollow">http://code.google.com/p/reallysimplehistory/</a></p> <p>The same ideas will be used.</p>