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.