jQuery applying css opacity

css, internet-explorer, jquery, opacity

Solution

try with this:

-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /* IE 8 */
filter: alpha(opacity=75); /* older IEs */

hope this is helpful for you

Problem

I have tried to get the opacity to work in IE, I am testing in IE8 at the moment, Chrome etc works fine but IE8 is terrible. My code has been: ``` $('#mydiv').animate({'opacity': '0.5'}); ``` and ``` $('#mydiv').css('opacity', 0.5); ``` The opacity is applied to the images held within this div but none of the text, it's very infuriating :( can anyone help me? Thanks in advance.

Original source

Related problems