I've been looking for a jquery accordion for a FAQ section of my site but I have a problem here....
In this example how to make the accordion with collpase option off
http://jqueryui.com/accordion/#collapsible
instead of this (orignal)
this thing
Jquery Accordion
Re: Jquery Accordion
I'm not sure I understand.
Do you want it closed by default?
Do you want it closed by default?
Re: Jquery Accordion
Yup that's what I meant. sorry
Re: Jquery Accordion
Already sorted out
Forgot to read documentation.
I've just had to add
Thanks
Forgot to read documentation.
$(function() { $("#accordion").accordion({ collapsible: true, active: false }); });This will do it.
I've just had to add
collapsible: true, active: falseto my version.
Thanks
Re: Jquery Accordion
Self solving topics are the best!