PNG with opacity becomes black on IE

Problem:
jQuery(this).animate({opacity: .5}, 250);

Solution:
jQuery(this).css(‘background-color’, ‘#ffffff’).animate({opacity: .5}, 250);

Leave a Reply

Your email address will not be published. Required fields are marked *