[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-05 Thread Michael Stuhr
SeViR schrieb: Michael Stuhr escribió: Sam Collett schrieb: is there a 'compiled' version too (of this fix)? micha I simply download the SVN version and I compiled with ant. I have attached the new trunk version compiled (packed and source version of jquery.js) thanks micha

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread jsw_nz
Hi mouqx xu I came across this issue as well ...seems the newest 113 has gone through some tweaks This page may be helpful http://malsup.com/jquery/test/test.html - there is a version that works r2213 - however it is uncompressed at this stage - likely to be updated soon my second day with jQue

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Michael Stuhr
Sam Collett schrieb: While it is fixed in SVN, I would rather wait till the next release (1.1.3.1 rather than 1.1.4). So for the time being, I am sticking with 1.1.2 (for work related sites). On Jul 4, 11:33 am, "Francisco José Rives" <[EMAIL PROTECTED]> wrote: Fixed in the latest trunk versio

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Sam Collett
While it is fixed in SVN, I would rather wait till the next release (1.1.3.1 rather than 1.1.4). So for the time being, I am sticking with 1.1.2 (for work related sites). On Jul 4, 11:33 am, "Francisco José Rives" <[EMAIL PROTECTED]> wrote: > Fixed in the latest trunk version :-D

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Francisco José Rives
Fixed in the latest trunk version :-D On 7/4/07, Francisco José Rives <[EMAIL PROTECTED]> wrote: There is a bug in jQuery attr function in 1.1.3 jQuery code - attr: function(elem, name, value){ var fix = jQuery.isXMLDoc(elem) ? {} : jQuery.props; // Cert

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Francisco José Rives
There is a bug in jQuery attr function in 1.1.3 jQuery code - attr: function(elem, name, value){ var fix = jQuery.isXMLDoc(elem) ? {} : jQuery.props; // Certain attributes only work when accessed via the old DOM 0 way if ( fix[name] ) { if (

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread mouqx xu
But in 1.1.2 or below, .css("opacity", 0.5) will be translated to filter: alpha(opacity=50), I wonder why 1.1.3 remove this feature. On 7/4/07, SeViR <[EMAIL PROTECTED]> wrote: In IE 6 CSS opacity doesn't exists, you must use filter:alpha(opacity=50) so $("").css({filter:"alpha(opacity=50)"

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Francisco José Rives
Ok, I'm wrong :-P I see, jQuery checks some css properties and if IE, set the proper filter. But in my test with jQuery 1.1.3 debugging with IE Developer toolbar I get: wrote: While it doesn't exist as a CSS property in IE 6, you used to be able to do $("#foo").css("opacity","0.8") and it w

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Sam Collett
While it doesn't exist as a CSS property in IE 6, you used to be able to do $("#foo").css("opacity","0.8") and it would still apply the opacity the the element(s) it was applied to. On Jul 4, 10:13 am, SeViR <[EMAIL PROTECTED]> wrote: > In IE 6 CSS opacity doesn't exists, you must use > > filter:

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread SeViR
In IE 6 CSS opacity doesn't exists, you must use filter:alpha(opacity=50) so $("").css({filter:"alpha(opacity=50)"}); //Only in browser <= IE6 or better $("").fadeTo("fast", 0.5, function(){ alert("Animation Done."); }); //cross-platform opacity mouqx xu escribió: following is a simp