<script type="text/javascript">
$(function () {
$("#myDialog").dialog({
width: $(window).width()*0.9,
height: $(window).height()*0.9,
position: 'center'
});
var timerid;
$(window).resize(function () {
(timerid && clearTimeout(timerid));
timerid = setTimeout(function () {
//uncomment to test alert("Do Resize");
$("#myDialog").dialog("option","width",$(window).width()*0.9);
$("#myDialog").dialog("option","height",$(window).height()*0.9);
$("#myDialog").dialog("option","position","center");
}, 200);
});
});
</script>
Tested in Chrome, Firefox, IE ... work.
(Sorry for my English, I am Brazilian using the google translator!)