Collapse all sections in accordion on page load in jQuery Accordion

前端 未结 4 1969
醉话见心
醉话见心 2020-12-30 23:55

I am using JQuery Accordion, I want to hide all the sections on page load. Only when user clicks on header that section should open.

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-31 00:30

    Use this in your document ready function when initialising the accordion:

    $("#someid").accordion({collapsible : true, active : 'none'});
    

提交回复
热议问题