This was examined and resolved by balpha. I'll quote his answer here:
This is fixed now.
It took a whole lot of single-stepping through callback after callback after callback, but in the end, it was actually a bug in the HTML code.
When you link directly to an answer (instead of just a question), this answer is shown in a highlight color which then fades back to normal (as everybody has probably seen).
We're in the process of converting our pages from the old ASPX view engine to Razor, and in the process of converting the partial view that shows a single answer (this conversion happened today), there was a little too much encoding happening, so the result for the highlighted answer looked like this:
<div id="answer-85877" class="answer" style="background-color:#F6F5EE;">
This is obviously anything but valid (but it actually depends on the browser how it gets handled). When the jQuery color animation plugin tried to find the current color, all it found was either garbage or nothing (depending on the browser). When it found nothing, this worked fine (except that you didn't see the animation); when it found garbage, this caused the code to throw up.