[accordion] How to disable a section ?
Hi,
I have a jquery accordion on my website and I would like some items to be clikable (with a content section) and some to be only an item, without any link on it.
I tried with that syntax, but the accordion has been disable :
<h3><a href="#">Section 1</a></h3>
<div>Section 1</div>
<h3>Section 2</h3>
<h3><a href="#">Section 3</a></h3>
<div>My nice section content</div>
My accordion call is like that :
$("#titres_cd").accordion({
autoHeight: false,
collapsible: true,
active: false
});
Any idea ?
Tkanks for your help.