JQUERY UI Accordion start collapsed

后端 未结 7 2020
花落未央
花落未央 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:48

    I used this code, as i was using a Dreamweaver Widget, the code that Topek didnt work for me hope this helps,

    jQuery("#jQueryUIAccordion").accordion({ 
            event: "click",
            active: false,
            collapsible: true,
            autoHeight: false
    
        });
    

提交回复
热议问题