http://www.i-marco.n...accordion-menu/
function initMenu() {
$('#menu ul').hide();
$('#menu li a').mouseover(
function() {
$(this).next().slideToggle('normal');
navigation:true
}
);
}
$(document).ready(function() {initMenu();});
Which works great, but my problem that my little pea brain can't seem to figure out is how to keep the menu open on the continuous pages a user clicks through.
Here is a link to the page I'm working on.
http://www.litemedia...hoko/akiko3.php
When you click on "portfolio" it works fine, but when you click on the sublink "KAISO", it then loads that page, but the menu collapses. Does this have something to do with hashing? I looked this up, but was unable to find any good resources on how to fix this problem. I believe one solution was to set the navigationFilter option to "true",which you can see that I tried to do, but I'm not quite sure where to do that...
Any ideas?
thanks!

New Topic/Question
Reply



MultiQuote



|