jquery-color

JQuery color animations not firing reliably

I'm having a problem using the jquery hover events. I've created a reduction of the problem. You can find a working demonstration here. I can reproduce this after moving the mouse around in IE, FF, Opera, and Chrome. I'm using queued animations in my mouseover event. Roughly 1% of the time, the color of the td elements is left as #...

jQuery animation won't run on one element

I have the following jQuery code which runs when I'm clicking an option in a select box: $('#name, #account, #kid') .attr('disabled', 'disabled') .css('background-color', '#ffffcc') .animate({ backgroundColor:'#ffffff' }, 1000); This code takes the three input fields #name, #account and #kid, disables them, change backgrou...