maxHeight : numberDefault: undefined

The maximum height in pixels to which the dialog can be resized.

Examples

sample

    
 <div id="dialog">Lorem ipsum dolor sit amet, consectetur adipiscing elit...</div>
 <script>
     $("#dialog").dialog({
         resizable: true,
         maxHeight: 500
     });
 </script>