Link to open jQuery Accordion

前端 未结 7 2314
臣服心动
臣服心动 2020-12-03 12:16

I\'m trying to open an accordion div from an external link. I see the \"navigation: true\" option but I\'m not sure how to implement it. Do you give each div an id and call

7条回答
  •  借酒劲吻你
    2020-12-03 12:41

    $("a").click(function(event){
        var hash = window.location.hash;
        $("#accordion").accordion("activate", hash);
    });
    

    this works with jquery 1.8.3 and jqueryui 1.9.1 but didnt seem to work with jqueryui 1.10.0

    not sure why...

提交回复
热议问题