[jQuery] Re: jQuery.Accordion - how can panels stay open?

2009-01-05 Thread spstieng
I wonder why I thought that was regarding nested lists. Anyway, I fixed it using this code: jQuery('#channelGroups h3').click(function() { $(this).next('ul').slideToggle('fast') .siblings('ul:visible').slideUp('fast'); }); On 5 Jan, 13:56, Jörn Zaefferer

[jQuery] Re: jQuery.Accordion - how can panels stay open?

2009-01-05 Thread Jörn Zaefferer
http://docs.jquery.com/UI/Accordion#What_this_isn.27t Jörn On Mon, Jan 5, 2009 at 11:30 AM, spstieng spsti...@hotmail.com wrote: I'm successfully using the accordion here http://www.norwegianfashion.no (right side below videos). My question is: How can I leave a panel open after it's been

[jQuery] Re: jQuery.Accordion - how can panels stay open?

2009-01-05 Thread Jörn Zaefferer
Nested accordions actually work just fine. You just need to set clearStyle:true. Anyway, nice to know that was what you're looking for. Jörn On Mon, Jan 5, 2009 at 2:12 PM, spstieng spsti...@hotmail.com wrote: I wonder why I thought that was regarding nested lists. Anyway, I fixed it using