DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
FadeIn Images After Loaded
Turn off images while loading, and fade in when loaded
$(document).ready(function() {
$('img').each(function() {
$(this).css({
opacity: 0
}).bind('load', function() {
$(this).animate({
opacity: 1
}, 'slow');
});
});
});





