On Oct 7, 2:40 pm, To <[EMAIL PROTECTED]> wrote: > On Oct 6, 7:36 pm,muccy<[EMAIL PROTECTED]> wrote: > > > > $("#photo").fadeIn("slow"); > > > $("#photo").show; > > > $("#photo").fadeIn("slow", function() { > > $(this).show(); > > > } > > > it should work well > > I'm afraid it's not... :-S This is my code: > > $("#photo").hide(); > $(window).load(function() { > $("#photo").fadeIn("slow", function() { > $(this).show(); > }) > > }); > > With this line in the CSS: > > #photo { > display: none; > > }
But...why "display: none" and hide() together???