how to fix opacity on IE6
This code does not work on IE6 !
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
And this code !
$('#description').animate({opacity: 0.0}, 1000);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re working with
opacityin jQuery, then thefadeIn,faceOutandfadeTofunction should be better thananimate. In your case it would beOr with
fadeTo,But it is work on IE6! 🙁
http://jsbin.com/owisa/3
Where it is not work?