Это то, что я делаю, чтобы добавить новую строку в таблицу: -
function expandAll(){
$('#myTableID>tbody>tr>td:nth-child(2)>div:nth-child(2)').each ( function() {
html = $(this).html();
// Is it possible to add this Row with animation
$(this).parent().parent().after( "<tr><td colspan='2'> </td><td colspan='15'>" + html + "</td></tr>" ).slideDown('slow');
} );
}
Я могу добавить новую строку, но эффект от использования slideDown отсутствует.