jQuery Accordion open collapsed

后端 未结 2 946
说谎
说谎 2021-02-05 04:09

using jquery v1.3.2 and jQuery UI 1.7.1

I have 1 tab control with 3 tabs in it. Each tab contains 1 accordion control.

$(document).ready(function() {
$(\         


        
相关标签:
2条回答
  • 2021-02-05 04:33

    I have created this one:

    http://sarfraznawaz.wordpress.com/2010/03/09/creating-stylish-sliding-menu-with-jquery/

    0 讨论(0)
  • 2021-02-05 04:40

    Try this

    $('#acc1').accordion({ 
        collapsible: true, 
        autoHeight: false, 
        active: false 
    });
    
    0 讨论(0)
提交回复
热议问题