Hello,
Can anyone suggest how to write a navigation filter for a UI Accordion
with multiple nested lists? With the default settings, the navigation
filter only works to the first child of the parent 'head' element. My
accordion menu has about four levels. If this is not possible, is
there another jquery accordion plugin that might work?
Here's the default navigation filter and config I'm using:
// initialize accordion menu
$('#accordion').accordion({
active: true,
alwaysOpen: false,
header: '.head',
event: 'click',
autoHeight: false ,
selectedClass: 'active',
navigation: true,
navigationFilter: function() {
return this.href.toLowerCase() ==
location.href.toLowerCase();
}
});
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---