Jquery - Accordion
How to make an accordion in jquery to sel开发者_开发百科ect none of the menu while loading
read here
Selector for the active element. Set to false to display none at start. Needs collapsible: true.
$( ".selector" ).accordion({ active: false });
or Get or set the active option, after init
$( ".selector" ).accordion( "option", "active", false );
精彩评论