Skip to content

Instantly share code, notes, and snippets.

@Usse
Created January 18, 2013 10:42
Show Gist options
  • Save Usse/4563783 to your computer and use it in GitHub Desktop.
Save Usse/4563783 to your computer and use it in GitHub Desktop.
Fix for PNG transparency issue in IE when fading images
var i;
for (i in document.images) {
if (document.images[i].src) {
var imgSrc = document.images[i].src;
if (imgSrc.substr(imgSrc.length-4) === '.png' || imgSrc.substr(imgSrc.length-4) === '.PNG') {
document.images[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='" + imgSrc + "')";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment