PNG-24 Alpha support for IE
Get alpha channel on web, that's possible with PNG-24 images and this trick.
BE CAREFUL: that seem to work only for 10 images per page.
# Display PNG-24 images with alpha channel on IE # BE CAREFUL: with this trick, only 10 PNGs seems to be supported by IE # Don't forget to set the size of your div def transpng(id, png) '<style type="text/css"> <!-- ' + id + ' { background-image: url(' + png + '); } --> </style> <!--[if IE]> <style> ' + id + ' { background-image: none; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + png + ', sizingMethod=\'scale\'); } </style> <![endif]-->' end