I think it jQueryreturns the computed style that occurs when the element is rendered. However, IE has elem.currentStylewhich, as far as I remember, is different from elem.runtimeStyle(which is similar to getComputedStyle()).
So try this.currentStyle.widthto see what it returns
zvona source
share