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

link|improve this question

feedback

13 Answers

up vote 223 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(); }
});
link|improve this answer
67  
$(".ui-dialog-titlebar-close", ui).hide(); to hide the button for this dialog only. – Anton Feb 8 '10 at 11:42
2  
@Anton --> the ", ui" trick doesn't work for me! – JohnIdol May 22 '10 at 10:07
26  
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
38  
@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
2  
@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 7 more comments
feedback

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

link|improve this answer
2  
+1 for a very neat addition to the other answers here – Aleadam Apr 8 '11 at 2:55
1  
That's a clever solution – Stephan Aug 16 '11 at 0:15
1  
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
2  
very clean solution... +1 for not involving additional js functionality to remove the button. – Bongs Jan 23 at 15:23
1  
My favorite solution. Very non-intrusive ! – Robotsushi May 7 at 15:56
show 2 more comments
feedback

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();
},
link|improve this answer
8  
This is more complicated than you need. $(".ui-dialog-titlebar-close", $(this).parent()).hide(); – Kevin Panko Jan 25 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 at 13:53
feedback

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."

link|improve this answer
1  
-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
1  
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
2  
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
2  
@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
feedback

I think this is better.

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

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

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

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
link|improve this answer
This worked perfectly – Ravindra Gullapalli Apr 25 at 9:09
feedback
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!

link|improve this answer
feedback

For the deactivating the class, the short code:

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

may be used.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

Robert MacLean's answer did not work for me.

This however does work for me:

$("#div").dialog({
   open: function() { $(".ui-dialog-titlebar-close").hide(); }
});
link|improve this answer
feedback

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.