[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-06-14 Thread Matthieu BARBE
I tested this code *z=c.zIndex* (replace to z=(/^\d+$/.test(h.w.css('z-index')))?h.w.css('z-index'):c.zIndex) and it's ok for me with ie 6 and 7, firefox, opera 9.5 and safari for windows ! 2008/6/10 Matthieu BARBE [EMAIL PROTECTED]: This modification z= !$.browser.msie ? h.w.css('z-index') :

[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-06-10 Thread Matthieu BARBE
This modification z= !$.browser.msie ? h.w.css('z-index') : c.zIndex (jqmodal.js line 41) does not with firefox 3 :( 2008/6/8 hammett [EMAIL PROTECTED]: For future references, change it to z= !$.browser.msie ? h.w.css('z-index') : c.zIndex (jqmodal.js line 41) On May 29, 9:08 am, Tony

[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-06-08 Thread hammett
For future references, change it to z= !$.browser.msie ? h.w.css('z-index') : c.zIndex (jqmodal.js line 41) On May 29, 9:08 am, Tony [EMAIL PROTECTED] wrote: jqModaldoes not work with 1.2.5 (6) due to this line of code injqModal

[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-05-29 Thread mojock
I'm having the same exact problem. 1.2.3 works perfectly fine, but 1.2.5/.6 does not work - specifically with jqmodal. On May 28, 5:49 am, M_Freeman [EMAIL PROTECTED] wrote: Once I upgraded to 1.2.5 and 1.2.6 there seems t be a problem with the way that jQuery sets the opacity filter in IE,

[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-05-29 Thread Tony
jqModal does not work with 1.2.5 (6) due to this line of code in jqModal z=(/^\d+$/.test(h.w.css('z-index')))?h.w.css('z-index'):c.zIndex, In previous versions of jQuery the line (/^\d+$/.test(h.w.css('z-index'))) return undefined in IE6/IE7 (i.e. false) In 1.2.5 this return 0 (true) which is