vote up -1 vote down star

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 answered I have had a look and try to adapt other answers for different question but nothing seems to work and its starting to frustrate me.

Thanks.

Code:

<script type="text/javascript">                                         
$(function () {
.load(function () {
      // set the image hidden by default    
      $('#logo').hide();.fadeIn(3000);
                                }}                     
 </script>                
    <link rel="stylesheet" href="challenge.css"/>  
<title>Acme Widgets</title>         
  </head>     
  <body> 
     <div id="wrapper"> 
     <div id="header">
     <img id="logo" src="logo-smaller.jpg" /> 
     </div>
      <div id="nav">
      navigation
     </div>
      <div id="leftCol">
      left col
     </div>
      <div id="rightCol">
        <div id="header2">
        header 2
        </div>
        <div id="centreCol">
        body text
        </div>
        <div id="rightCol2">
        right col
        </div>
     </div>
     <div id="footer">
     footer
     </div>
     </div>
  </body>
</html>
flag

79% accept rate

6 Answers

vote up 0 vote down

oops posted in wrong window.. please delete

link|flag
vote up 0 vote down check

I figure out the answer! You need to use the window.onload function as shown below. Thanks to Tec guy and Karim for the help. Note: You still need to use the document ready function too.

window.onload = function() {$('#logo').hide().fadeIn(3000);};
link|flag
vote up -1 vote down

karim79 post should inspired you to solve your problem...i notice there are a quote(`) on the start and the end of your code..try check it out

link|flag
vote up 3 vote down

Simply set the logo's style to display:hidden and call fadeIn, instead of first calling hide:

$(document).ready(function() {
    $('#logo').fadeIn("normal");
});

<img src="logo.jpg" style="display:none"/>
link|flag
Still cant get it to work! :( – Cool Hand Luke UK Sep 5 at 18:26
@Cool Hand Luke UK - did you try @Traveling Tech Guy's solution? – karim79 Sep 5 at 19:01
vote up 6 vote down

You have a syntax error on line 5:
$('#logo').hide();.fadeIn(3000);
should be:
$('#logo').hide().fadeIn(3000);

link|flag
vote up 0 vote down

Try this one 1) include your jQuery library

<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
    google.load("jquery", "1.3");
</script>

2) this is the function you want to use probably

<script type="text/javascript">
    $(document).ready(function(
    $('#logo').fadeIn("slow"); 
    ));

</script>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.