19Jan/101
jQuery: Hide all rows in a table which are not in class…
$('#detail_table tr').filter(function (index) {
return $(this).attr('class') != 'parent';
}).hide();
$('#detail_table tr').filter(function (index) {
return $(this).attr('class') != 'parent';
}).hide();
May 3rd, 2010 - 00:13
I understand that : ))