Hi all,
I am looking for a jquery accordion menu with submenu. Right now i am
trying to edit
http://www.i-marco.nl/weblog/archive/2008/05/08/simple_jquery_accordion_menu__?utm_campaign=searchlanding
but unfortunatly i am stuck
Any other tutorials, suggestions??
I'm trying to write a very simple accordion menu.
The markup is a list of links and sub-lists (of links).
The behavior I want is that when you click on a link, you follow the
link, and when you click on a list li, you toggle the visiblity of the
sub-list.
The problem I have is that while the cli
Hi!
I'm trying to implement an accordion menu but I'm only getting the
first sub menu to show up when I click on its header menu. This is the
code I have for the function.
$(document).ready(function()
{
$("div.menu_body").hide();
$("p.menu_head").click(function()
{
$(
I'm using this plugin for an accordion navigation in jquery.
http://www.i-marco.nl/weblog/jquery-accordion-menu/
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 l
hi, i use the followig accordion menu:
function initMenu() {
$('#submenu ul').hide();
//$('#submenu ul:first').show();
$('#submenu li a').click(
function() {
var checkElement = $(this).next();
if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
return fals
5 matches
Mail list logo