Jiew Meng
Jiew Meng

Reputation: 88197

How can I just open an Overlay (like dialog without title bar) in jQuery UI

How can I just open something similar to what I see in the theme roller site?

Alternatively, can I open a jQuery Dialog without the title bar

Upvotes: 4

Views: 846

Answers (1)

NicolaPasqui
NicolaPasqui

Reputation: 1120

You can use the option DialogClass:

$('.selector').dialog({ dialogClass: 'notitle' });

and in the CSS specify your class by removing the title ecc

.notitle .ui-dialog-titlebar {display:none}

Upvotes: 3

Related Questions