Ok Smarty Pants...Here is one for you!
This code works great, it is highlighting the rows in my table. However it is not fading in slow. The highlight just pops right up! I am expecting it to fade in slowly like I have it defined.
Why is this???
$('#striped tr').mouseover(function() {
$(this).fadeIn('slow', function() {
$(this).addClass('highlight');
});
});