Reputation: 88197
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
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