Hide Title bar and Show Close Button in jQuery Dialog

前端 未结 5 1105
萌比男神i
萌比男神i 2021-01-15 01:10

I have hide title bar in jQuery Dialog as below

$(\".ui-dialog-titlebar\").hide();

This also hide close button in Dialo

5条回答
  •  感情败类
    2021-01-15 01:40

    What about just set height to 0? Seemed work for my needs.

    .ui-dialog-titlebar {
      height: 0;
    }
    

提交回复
热议问题