Pergunta

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!

Foi útil?

Solução

Replace allPanels.slideUp(); with following line:

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

DEMO

Outras dicas

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top