JQUERY UI Accordion start collapsed

后端 未结 7 2016
花落未央
花落未央 2020-12-14 05:10

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

7条回答
  •  执念已碎
    2020-12-14 05:47

    In your options specify:

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

    See documentation for active.

提交回复
热议问题