height : (number|string)Default: "auto"

The height of the dialog.

Support string and number values. The number value sets the height in pixels.The only supported string value is "auto" which will allow the dialog height to adjust based on its content.

Examples

sample

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