Hi all,
I was wondering if anyone knew of a jquery implementation of the following moo-tools modal box -> click here I've seen facebox, but it uses the old facebook modal dialog layout and not the newer one.
If there aren't any available then an example of how to theme jquery's ui modal dialog to look like that would be really helpful. The html output for the JQuery UI Modal Dialog looks like this:
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable">
<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
<span id="ui-dialog-title-dialog" class="ui-dialog-title">Dialog title</span>
<a class="ui-dialog-titlebar-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick">close</span></a>
</div>
<div style="height: 200px; min-height: 109px; width: auto;" class="ui-dialog-content ui-widget-content" id="dialog">
<p>Content.</p>
</div>
</div>
Thanks