This problem appeared in UI1.7 and has not been fixed in UI1.8. I really don’t know what to say.
JQUI development post for submitting bugs: http://dev.jqueryui.com/ticket /3623 The solution is quite unscientific~
My solution, I personally feel better than that one, because I only hide the horizontal scroll bar, haha
Attached is the modified code:
Modify: jquery.ui.dialog.js
var $el = (this.oldInstances.pop() || $('
').addClass('ui-widget-overlay'))
.appendTo (document.body)
.css({
width: this.width(),
height: this.height()
});
#Add below this
($.browser.msie && $.browser.version == '8.0')?$('body').css('overflow-x','hidden'):'';
Modification 2:
this.maxZ = maxZ;
#Add
($.browser.msie && $.browser.version == '8.0')?$('body').css(' overflow-x','auto'):'';