Link to home
Start Free TrialLog in
Avatar of MFredin
MFredinFlag for United States of America

asked on

Help with jquery accordion menu

I'm setting up a menu I found here:  http://designmodo.com/jquery-accordion-menu/

I'd like to make a couple of the buttons clickable directly to a link instead of expanding.  For example, the sign out button.  I dont have a sub-menu for that, I'd just like to take the user to the sign out page.  How might I do this?  


Thanks!
Avatar of leakim971
leakim971
Flag of Guadeloupe image

<li id="one" class="signinout">
        <a href="/path/to/signout.php">Sign out<span>10</span></a>
</li>

Open in new window


no?
Need to see how your menu is implemented.

See what happens if you do what leakim971 says and don't define a sub-list.
ASKER CERTIFIED SOLUTION
Avatar of MFredin
MFredin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ok but just be careful because that line is there for a reason - to stop the default action for a click on an <a> element. If you remove it it might cause unexpected results for the rest of your menu.