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
I had the same problem. In my case the dialog is a child of body and I used the following script to prevent overflow:
$("#your-dialog").dialog({ //our options, open: function(){ $("body").css("overflow", "hidden"); }, close: function(){ $("body").css("overflow", "initial"); } });