diff --git a/fx/fx.js b/fx/fx.js index 665f8950a..559e4f6f5 100644 --- a/fx/fx.js +++ b/fx/fx.js @@ -211,6 +211,11 @@ $.fx = function(el,op,ty){ } }; + // IE has trouble with opacity if it doesn't have layout + if ( $.browser == "msie" && !z.el.currentStyle.hasLayout ) { + y.zoom = 1; + } + // Remember the overflow of the element z.oldOverflow = y.overflow;