Question

I'm trying to achieve multiple sections opened at once but when closing once section, the other sections are still open, like whats been done here http://jsfiddle.net/MZ4z9/

And i am trying to implement this within the jQuery accordion that i'm using here: http://jsfiddle.net/Lue6G/

Any help would be greatly appreciated!

Was it helpful?

Solution

Replace allPanels.slideUp(); with following line:

$(this).parent().next('dd').slideUp();

DEMO

OTHER TIPS

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top