The minimum height in pixels to which the dialog can be resized.
Examples
sample
<div id="dialog">The minimum height of this dialog is set to 200 px. Try to resize it for testing.</div>
<script>
$("#dialog").dialog({
resizable: true,
height: 300,
minHeight: 200
});
</script>