I have hide title bar in jQuery Dialog as below
jQuery Dialog
$(\".ui-dialog-titlebar\").hide();
This also hide close button in Dialo
Dialo
This works for me:
(Assume your close button has id #close)
$(".ui-dialog-titlebar : not(#close)").hide();