Hide / FadeOut Row Table - jQuery

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

+5
source share
1 answer

It should work fine if you hide td instead

$('#pic td').fadeOut(1000);

Look at jsFiddle

+10
source

All Articles