Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I remove the close button (the X in the top right corner) on a dialog box created by jQueryUI?

share|improve this question
1  
Check the documentation, first sub-title: api.jqueryui.com/dialog – Mike Cole Mar 18 at 21:18

17 Answers

up vote 346 down vote accepted

I have found this worked in the end (note the third line overriding the open function which find the button and hides it):

$("#div2").dialog({
   closeOnEscape: false,
   open: function(event, ui) { $(".ui-dialog-titlebar-close", ui.dialog || ui).hide(); }
});

To hide the close button on all dialogs you can use the following CSS too:

.ui-dialog-titlebar-close {
  visibility: hidden;
}
share|improve this answer
84  
$(".ui-dialog-titlebar-close", ui).hide(); to hide the button for this dialog only. – Anton Feb 8 '10 at 11:42
3  
@Anton --> the ", ui" trick doesn't work for me! – JohnIdol May 22 '10 at 10:07
35  
I couldn't get it to work from the ui parameter either. I ended up using: $(".ui-dialog-titlebar-close", $(this).parent()).hide(); – Nigel Jun 8 '10 at 16:00
52  
@Anton Just want to point out that just specifying 'ui' does not work. you have to use 'ui.dialog'. so the correct line would be $(".ui-dialog-titlebar-close", ui.dialog).hide(); – Bradley Mountford May 26 '11 at 19:51
15  
@Bradley. ui didn't work for me, ui.dialog did but applied on each instances. To have ot working applied to only the one the open function is defined for I had to do this: $(".ui-dialog-titlebar-close", this.parentNode).hide(); – Nabab Oct 22 '11 at 16:28
show 14 more comments

Here is another option just using CSS that does not over ride every dialog on the page.

The CSS

.no-close .ui-dialog-titlebar-close {display: none }

The HTML <div class="selector" title="No close button">This is a test without a close button</div>

The Javascript.

$( ".selector" ).dialog({ dialogClass: 'no-close' });

Working Example

share|improve this answer
5  
+1 for a very neat addition to the other answers here – Aleadam Apr 8 '11 at 2:55
4  
I like this approach because I can use it alongside things like: .noTitleDlg .ui-dialog-titlebar {display:none} in CSS to build up the way I want my dialog to appear and behave and then just set the dialogClass accordingly. – A. Murray Sep 9 '11 at 9:29
4  
very clean solution... +1 for not involving additional js functionality to remove the button. – Bongs Jan 23 '12 at 15:23
4  
My favorite solution. Very non-intrusive ! – Robotsushi May 7 '12 at 15:56
2  
Definitely the best answer here. – anyeone Sep 19 '12 at 15:32
show 8 more comments

the "best" answer will not be good for multiple dialogs. here is a better solution.

open: function(event, ui) { 
    //hide close button.
    $(this).parent().children().children('.ui-dialog-titlebar-close').hide();
},
share|improve this answer
14  
This is more complicated than you need. $(".ui-dialog-titlebar-close", $(this).parent()).hide(); – Kevin Panko Jan 25 '12 at 19:11
@KevinPanko your suggestion works well when using the example provided by the jquery ui demo site with ASP.NET v2.0 in an .aspx page. jqueryui.com/demos/dialog/modal-form.html – Matthew Dally Feb 14 '12 at 13:53
3  
.closest('.ui-dialog') is better than assuming a parent. – technomage Jun 1 '12 at 19:19
You are awesome thanks so much .. you are master mind of jqueryUI :) – Appz Venture 4 hours ago

You can use CSS to hide the close button.

What I mean is that CSS can be used directly instead of JavaScript

<style>
.ui-dialog-titlebar-close{
    display: none;
}
</style>

Also I can not accept the answer I am not wrong but -1, I just tell you approach, I do not intend to tell you the specific answer.

I do not know if you have not heard of a proverb that is

"if you give man a fish,he will have a single meal,but if you teach man to fish, feed him whole life."

share|improve this answer
2  
-1 for an answer that is accurate but ultimately useless – Robert MacLean May 22 '09 at 11:12
1  
I never said you were wrong, in fact I said you were accurate. However a CSS solution to the problem is useless in this scenario. – Robert MacLean Sep 22 '09 at 14:48
2  
It isn't obvious (at all) from your question that a CSS solution wouldn't solve your problem. – Zachary Aug 18 '10 at 14:35
3  
I don't understand the "useless" comment here. The answer seems reasonable; however, the styles should cascade so that the change isn't global to all dialogs. For example, .myDisabledModal .ui-dialog-titlebar-close {display: none;} – Brett Oct 12 '10 at 14:25
7  
@Brett the original unedited answer just said "You can use CSS to hide the close button." and nothing more. – Davy8 Feb 2 '11 at 16:49
show 1 more comment

I think this is better.

open: function(event, ui) {
  $(this).closest('.ui-dialog').find('.ui-dialog-titlebar-close').hide();
}
share|improve this answer

Robert MacLean's answer did not work for me.

This however does work for me:

$("#div").dialog({
   open: function() { $(".ui-dialog-titlebar-close").hide(); }
});
share|improve this answer
2  
I think this explicit – thReality Aug 3 '12 at 3:41

Once you have called .dialog() on an element, you can locate the close button (and other dialog markup) at any convenient time without using event handlers:

$("#div2").dialog({                    // call .dialog method to create the dialog markup
    autoOpen: false
});
$("#div2").dialog("widget")            // get the dialog widget element
    .find(".ui-dialog-titlebar-close") // find the close button for this dialog
    .hide();                           // hide it

Alternate method:

Inside dialog event handlers, this refers to the element being "dialogged" and $(this).parent() refers to the dialog markup container, so:

$("#div3").dialog({
    open: function() {                         // open event handler
        $(this)                                // the element being dialogged
            .parent()                          // get the dialog widget element
            .find(".ui-dialog-titlebar-close") // find the close button for this dialog
            .hide();                           // hide it
    }
});

FYI, dialog markup looks like this:

<div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable">
    <!-- ^--- this is the dialog widget -->
    <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
        <span id="ui-dialog-title-dialog" class="ui-dialog-title">Dialog title</span>
        <a class="ui-dialog-titlebar-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick">close</span></a>
    </div>
    <div id="div2" style="height: 200px; min-height: 200px; width: auto;" class="ui-dialog-content ui-widget-content">
        <!-- ^--- this is the element upon which .dialog() was called -->
    </div>
</div>

Demos here

share|improve this answer
$("#div2").dialog({
   closeOnEscape: false,
   open: function(event, ui) { $('#div2').parent().find('a.ui-dialog-titlebar-close').hide();}
});
share|improve this answer
2  
That did exactly what I was looking for. They should really make that an option. – respectTheCode Nov 10 '11 at 13:35

The best way to hide the button is to filter it with it's data-icon attribute:

$('#dialog-id [data-icon="delete"]').hide();
share|improve this answer

As shown on the official page and suggested by David:

Create a style:

.no-close .ui-dialog-titlebar-close {
    display: none;
}

Then, you can simply add the no-close class to any dialog in order to hide it's close button:

$( "#dialog" ).dialog({
    dialogClass: "no-close",
    buttons: [{
        text: "OK",
        click: function() {
            $( this ).dialog( "close" );
        }
    }]
});
share|improve this answer
1  
Official answers are often the best. +1 – Blowsie Mar 25 at 11:47

http://jsfiddle.net/marcosfromero/aWyNn/

$('#yourdiv').                 // Get your box ...
  dialog().                    // ... and turn it into dialog (autoOpen: false also works)
  prev('.ui-dialog-titlebar'). // Get title bar,...
  find('a').                   // ... then get the X close button ...
  hide();                      // ... and hide it
share|improve this answer
This worked perfectly – Ravindra Gullapalli Apr 25 '12 at 9:09
open: function(event, ui) { 
  //hide close button.
  $(this).parent().children().children('.ui-dialog-titlebar-close').click(function(){
    $("#dhx_combo_list").remove();
  });
},

yaaaay! It's really working! I catch the close event of the dialog box. In the above code, it removes the div (#dhx_combo_list).

Great, thanks you all!

share|improve this answer

For the deactivating the class, the short code:

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

may be used.

share|improve this answer

None of the above works. The solution that really works is:

$(function(){

  //this is your dialog:
  $('#mydiv').dialog({

    // Step 1. Add an extra class to our dialog to address the dialog directly. Make sure that this class is not used anywhere else:

    dialogClass: 'my-extra-class' 

  })

  // Step 2. Hide the close 'X' button on the dialog that you marked with your extra class
  $('.my-extra-class').find('.ui-dialog-titlebar-close').css('display','none');

  // Step 3. Enjoy your dialog without the 'X' link

})

Please check if it works for you.

share|improve this answer

The close button added by the Dialog widget has the class 'ui-dialog-titlebar-close', so after your initial call to .dialog(), you can use a statement like this to remove the close button again: It works..

$( 'a.ui-dialog-titlebar-close' ).remove();
share|improve this answer

What about simply disabling the close with the beforeClose callback:

$("#id").dialog({
   closeOnEscape: false,
   beforeClose :function(event,ui){ return false;}
});
share|improve this answer
2  
This is a bad idea. That just prevents the button from functioning. It's frustrating for users to see a close button, try it, and find it doesn't work. It's a violation of the principle of least astonishment. It's much better to not display the button at all. – L S Dec 16 '12 at 13:22

You can also remove your header line:

<div data-role="header">...</div>

which removes the close button.

share|improve this answer

protected by Shog9 Apr 20 '11 at 5:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.