how to hide table row using jQuery [with simple effect]?
I want a fadeout effect or want to hide a line at a "slow" speed.
My code hides it very quickly [it matches exactly document.getElementById('id').style.display='none';]
My code
$('#pic').animate({ opacity: 'hide' }, "slow");
$('#pic').fadeOut("slow");
Edit
I want to hide TD TR
source
share