Possible Duplicate:
jquery UI dialog: how to initialize without a title bar?
    $("<div id='divLoading1' >Loading...<div>").dialog({
        modal: true,
        resizable: false,
        width: 200,
        height: 100
    });
$("#divLoading1").prev().remove();//won't remove title
$("#divLoading1").prev().hide();
I want to the title from the dialog, but this wont work, why please?
 
     
    