I have hide title bar in jQuery Dialog as below
jQuery Dialog
$(\".ui-dialog-titlebar\").hide();
This also hide close button in Dialo
Dialo
What about just set height to 0? Seemed work for my needs.
.ui-dialog-titlebar { height: 0; }