1.

How To Initialize A Dialog Without A Title Bar?

Answer»

var dialogOpts=[]
$("#divId").DIALOG(dialogOpts);
//REMOVE the title BAR
$(".ui-dialog-titlebar").HIDE();

var dialogOpts=[]
$("#divId").dialog(dialogOpts);
//Remove the title bar
$(".ui-dialog-titlebar").hide();



Discussion

No Comment Found