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
The key is to use $(window).load(function(){} so we know the image is loaded. Hide the image via the css function then fade it in using fadeIn:
$(window).load(function(){}
$(function() { $(window).load(function(){ $('#logo').css({visibility: 'visible', opacity: 0}).fadeIn(1000); }); });
Idea from: http://www.getpeel.com/