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