Possible Duplicate:
Answer Highlight/Fade-out doesn’t fade-out.

In Chrome when I go to a question from the main page, sometimes the background color of an answer I have previously given sticks on orange and doesn't execute the animate code. This is occasional. Refresh sometimes does the same thing and sometimes correctly fades to white. Once I have it fading to white, further refreshes work correctly.

It smells like a timing/loading issue.

The code that doesn't seem to be executing is (in the case that just happened to me):

    <script type="text/javascript"> 
        $(function() {
            $("#answer-1175423").animate({backgroundColor:"#FFF"}, 2000);
        });
    </script>

Maybe you should do something to ensure that the animate doesn't even try until the whole page is loaded. Maybe throw it in with $(document).ready().

Not sure if it happens in other browsers or not. I'm almost always in Chrome for SO.

link|improve this question

0% accept rate
1  
Was supposed to be fixed 1 hour ago =x, meta.stackoverflow.com/questions/6229/… – Ian Elliott Jul 24 '09 at 5:01
Well, it just happened to me. Maybe it's in the pipe. – Nosredna Jul 24 '09 at 5:04
and since you have impugned our honor, I'll just point out this code is already in a ready. (huff) – Jeff Atwood Jul 24 '09 at 5:04
Yeah, we've pushed a fix (crosses fingers) to Meta already - it will be propagated to the other sites tonight. – Jarrod Dixon Jul 24 '09 at 5:05
1  
Yeah, the $(function () { }) syntax in jQuery is shorthand for $(document).ready() - docs.jquery.com/Core/jQuery#callback – Jarrod Dixon Jul 24 '09 at 5:06
2  
I'm so excited for tomorrow! I'm going to go to sleep now and dream happy SO dreams. – Nosredna Jul 24 '09 at 5:07
3  
I envy your dreams - I usually have nightmares of the site going down :) – Jarrod Dixon Jul 24 '09 at 5:38
@Jarrod Dixon - should this make us worry about the stability of the site or yourself? ;-) You're doing a great job in keeping it up, so stop worrying - it does not add to your life. – malach Jul 27 '09 at 11:21
feedback

closed as exact duplicate by Jeff Atwood Jul 24 '09 at 5:03

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

You must log in to answer this question.

Browse other questions tagged