Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is driving me batty... this works fine:

<div style="display:none" id="box">
    <img src="/images/wpgen_box1.jpg">
</div>
<script type="text/javascript">
    jQuery(document).ready(function(){
        setTimeout(function(){ jQuery('#box').fadein(); }, 5000);
    });
</script>

But this does NOT work:

<div id="box"> 
    <img src="/images/wpgen_box1.jpg">
</div>
<script type="text/javascript">
    jQuery(document).ready(function(){
        setTimeout(function(){ jQuery('#box').fadeout(); }, 5000);
    });
</script>

So, anyone know why I can fade in but not out?

share|improve this question
1  
There's a Highlander joke in here somewhere. – Dave Newton Nov 4 '11 at 21:32

1 Answer

up vote 4 down vote accepted

I don't know how fadein works actually. it is supposed to be fade*I*n, same for fadeOut.

share|improve this answer
OMG! SERIOUSLY!?!??! That fixed it. Unbef---ingleivable. Thanks!! – Jonathan van Clute Nov 4 '11 at 21:48
@Jonathan Make sure you accept his answer then :) – Dave Newton Nov 4 '11 at 21:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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