JQUERY UI Accordion start collapsed

H Bellamy picture H Bellamy · Oct 30, 2011 · Viewed 80.1k times · Source

How can I make the jquery UI accordion start collapsed when the form loads. Is there any javascript code for this?

Answer

topek picture topek · Oct 30, 2011

In your options specify:

{
  ...
  active: false,
  collapsible: true,
  ...
}

See documentation for active.