1

What do you think about IE? Yes, it's a very cool browser. There is PNG24 with a transparent area. I have applied the jquery opacity to it like:

$(".selector").css("opacity", 0.4);

and got the following problem:

IE8 bug

How can I fix it?

Jean Louis
  • 1,485
  • 8
  • 18
  • 33

3 Answers3

0

You Can use this Same PNG Method Here for IE Check This Link For the Solution

Use -ms-filter for IE8

-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/banner01.png,
 sizingMethod=crop)";
Community
  • 1
  • 1
Sanooj
  • 2,637
  • 15
  • 20
-1

try to use this

.selector
{
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE8 */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);  /* IE7 */

}
genesis
  • 50,477
  • 20
  • 96
  • 125
-1

all you need is this : DD_belatedPNG

Ya Zhuang
  • 4,652
  • 31
  • 40