jQuery Accordion: IE animation issues

后端 未结 16 1522
我寻月下人不归
我寻月下人不归 2020-12-25 14:39

Update

I am making this a community wiki, for three reasons:

  • I don\'t feel like I got a definitive answer, but
  • I have long since stopped nee
16条回答
  •  囚心锁ツ
    2020-12-25 15:19

    Same problem as all in IE7 with well formed standard HTML markup. What finally worked was removing autoHeight: "false" and using clearStyle: "true".
    I also created an IE < 8 version of the accordion Initialization with:

    if ( $.browser.msie && $.browser.version < 8 ) {
        //ie<8 version
    }
    else {
        //version for the good browsers
    }
    

提交回复
热议问题