Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a new Row in a table with animation using jQuery?

Tags:

html

jquery

This is what i am doing to add new Row in table:-

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'>&nbsp;</td><td colspan='15'>" + html + "</td></tr>" ).slideDown('slow');          
        } );
    }

I am able to add new Row, but there is no effect of using slideDown .

like image 370
Rakesh Juyal Avatar asked Dec 15 '09 14:12

Rakesh Juyal


1 Answers

If you have JQuery 1.3.2, you can do this:

$("<your row html>").hide().insertAfter($(this).parent().parent()).slideDown('slow');
like image 57
Derek Illchuk Avatar answered Sep 19 '22 13:09

Derek Illchuk