I’m using the Jquery UI According and it’s not starting all collapsed.
Here is the code I have:
$j(function() {
$j( "#accordion" ).accordion({
collapsible: true
active: false
});
});
Reading the API documentation on this, it says I must have the collapsible set to TRUE in order for the active: False to work properly. I have that. But when I view the according on my site, the 1st item isn’t collapsed – it’s open.
Where did I go wrong in the code?
Thanks in advance for your reply.
You need to add
,to separate options.Sample