Skip to content

Instantly share code, notes, and snippets.

@codexico
Created February 19, 2013 20:02
Show Gist options
  • Save codexico/4989363 to your computer and use it in GitHub Desktop.
Save codexico/4989363 to your computer and use it in GitHub Desktop.
solucao para o fade nos ies
$(function() {
if (jQuery.browser.msie)
$('img[src$=".png"]').each(function() { // must have quotes around .png
this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+this.src+",sizingMethod='scale')";
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment