Is it possible to open a jQuery UI Dialog without a title bar?
If you have multiple dialog, you can use this:
$("#the_dialog").dialog({ open: function(event, ui) { //hide titlebar. $(this).parent().children('.ui-dialog-titlebar').hide(); } });