LoginSignup
6
7

More than 5 years have passed since last update.

[jQuery UI] Dialogで「タイトルバーを非表示」and「閉じるボタンを表示」する方法

Posted at

何かオプションがあるのかもしれないけど、これで対応した。

$dialog.dialog({
    autoOpen    : false,
    open        : function(event, ui){
        $('.ui-dialog-titlebar').removeClass('ui-widget-header');
    }
});

$dialog.dialog('open');
6
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
7