$.fadeTo/fadeOut() operations on Table Rows in IE fail
Posted by: Rick Strahls WebLog,
on 09 Nov 2009 |
View original | Bookmarked: 0 time(s)
Heres a a small problem that one of customers ran into a few days ago: He was playing around with some of the sample code Ive put out for one of my simple jQuery demos which deals with providing a simple pulse behavior plug-in: $.fn.pulse = function(time) {
if (!time)
time = 2000;
// *** this == jQuery object that contains selections
$(this).fadeTo(time, 0.20,
function() {
$(this).fadeTo(time, 1);
...