I\'m using the jQuery UI dialog to present content in a new iFrame. Everything works out great except that the parent window of the dialog is getting a horizontal scrollbar whi
This seems to be a small bug in jQuery UI 1.7.2 and there is currently an open ticket (#3623) on the issue. Two solutions are proposed in the ticket comments:
Modify jquery-ui-1.7.2.custom.css:
.ui-widget-overlay
.position:fixed;
.Modify jquery-ui-1.7.2.custom.min.js:
addClass("ui-widget-overlay").css({width:this.width(),height:this.height()});
on line 97..css({width:this.width(),height:this.height()})
.