jQuery slideToggle on a table with thead and tbody elements. No animation.

后端 未结 2 1353
慢半拍i
慢半拍i 2020-12-09 17:22

I have a table with a thead and tbody sections. I have applied a slideToggle on this successfully, but the animation is broken.

When a user clicks on the thead, I wa

2条回答
  •  不知归路
    2020-12-09 18:19

    I think you should set an height to the tbody to make it work, look at this fiddle: http://jsfiddle.net/nicolapeluchetti/AsDvb/

    css:

    tbody{
    
        height: 1000px;
        background-color: yellow;
    }
    

提交回复
热议问题