What\'s the best way to remove the close button on the jQuery UI dialog box?
I do not wish people to be able to close the dialog box.
I\'m covering it on the cod
I found another solution, works for me:
$("#divID").dialog({ closeOnEscape: false, open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); } });