maxWidth : numberDefault: undefined

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

Examples

sample

    
 <div id="dialog">The maximum width of this dialog is set to 400 px. Try to resize it for testing.</div>
 <script>
     $("#dialog").dialog({
         resizable: true,
         maxWidth: 400
     });
 </script>