Does anybody know how to make the jQuery dialog non-resizable ? At the moment, I call this:
var elem = $("#mydiv");
elem.dialog({
modal: true,
title: 'title',
buttons: {
Ok: function() {
$(this).dialog('close');
} // end function for Ok button
} // end buttons
}); // end dialog
elem.dialog('open')