Tagged Questions
The jquery-color tag has no wiki summary.
5
votes
1answer
336 views
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, ...
1
vote
1answer
298 views
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')
...
0
votes
1answer
42 views
Browser choking using setInterval and animating background color
I'm using the jQuery Color plugin in order to get a constantly animating background.
My code is like this:
$(document).ready(function()
var $body = $('body');
function ...