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.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With