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