Skip to main content

Bug Tracker

Side navigation

#1273 closed bug (worksforme)

Opened June 06, 2007 09:25AM UTC

Closed July 15, 2007 03:26PM UTC

Last modified March 15, 2012 06:04PM UTC

Problem with IE7, attr and opacity

Reported by: lagunas Owned by:
Priority: major Milestone: 1.1.4
Component: core Version: 1.1.3
Keywords: attr opacity Cc:
Blocked by: Blocking:
Description

I had to change in the attr function to check for elem.filter before replacing it :

if (name == "opacity" &&

jQuery.browser.msie && value != undefined ) {

IE has trouble with opacity if it does not have layout

Force it by setting the zoom level

elem.zoom = 1;

// Set the alpha filter to set the opacity

return elem.filter =

(elem.filter ? elem.filter.replace(/alpha\\([^\\)]*\\)/gi,"") : "") +

(value == 1 ? "" : "alpha(opacity=" + value * 100 + ")" );

}

Attachments (0)
Change History (1)

Changed July 15, 2007 03:26PM UTC by john comment:1

milestone: 1.1.31.1.4
resolution: → worksforme
status: newclosed
version: 1.1.21.1.3

This was resolved in jQuery 1.1.3.