// Usage: $("img[@src$=png]").pngFix(); jQuery.fn.pngFix = function() { return this.each(function() { if ($.browser.msie) { $(this).css("filter","progid:DXImageTransform.Microsoft.Alpha(opacity=0);").wrap(""); } }); }; $(document).ready(function(){ $('img[@src$=png]').pngFix(); });