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
Like Sohne mentions, but I would add this:
$("img").hide(); $("img").bind("load", function () { $(this).fadeIn(); });
or:
$("img").bind("load", function () { $(this).css({opacity: 0, visibility: "visible"}).animate({opacity: 1}, "slow"); });