Is it possible to open a jQuery UI Dialog without a title bar?
Have you tried solution from jQuery UI docs? https://api.jqueryui.com/dialog/#method-open
As it say you can do like this...
In CSS:
.no-titlebar .ui-dialog-titlebar { display: none; }
In JS:
$( "#dialog" ).dialog({ dialogClass: "no-titlebar" });