Snippets → jQuery
Simple PNG Fix for IE6 background images
Just add a “.pngfix” class to anything you want fixed or put in some other jQuery selector.
$('.pngfix').each( function() {
$(this).attr('writing-mode', 'tb-rl');
$(this).css('background-image', 'none');
$(this).css( 'filter', 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="path/to/image.png",sizingMethod="scale")');
});
Source: http://itknowledgeexchange.techtarget.com/itanswers?s=jquery...