All I want to do is fade my logo in on the page loading. I am new today to jQuery and I can\'t managed to fadeIn on load please help. Sorry if this question has already been
Using Desandro's imagesloaded plugin
1 - hide images in css:
#content img { display:none; }
2 - fade in images on load with javascript:
var imgLoad = imagesLoaded("#content"); imgLoad.on( 'progress', function( instance, image ) { $(image.img).fadeIn(); });