By default IE6 unable to display PNG as other modern browsers. Its always showing some other colors in place of transparency. With help of JQuery as a JavaScript library we can easily solve the problem. IE5.5 onwards we only get native support of PNG. Personally I recommended to don’t use PNG images for IE6 support, due to its not good idea for every places.
Download JQuery PNG Fix
Download GIF Pixel Image
Use following code too HTML header,
<script type="text/javascript" src="jquery/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="ifixpng/jquery.ifixpng2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
jQuery.ifixpng('ifixpng/pixel.gif');
jQuery('img_tag, .image_class').ifixpng();
});
</script>
Fix IE5 IE6 IE7 PNG Transparency Problem with JQuery Based Plugin,
Category: Web Design Support & Solution