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
To do this with multiple images you need to run though an .each() function. This works but I'm not sure how efficient it is.
.each()
$('img').hide(); $('img').each( function(){ $(this).on('load', function () { $(this).fadeIn(); }); });