<table> <tr id="table_rows_1"> <td>xxx</td> </tr> </table> $('#table_rows_1').hide(2000); 

I tried it, it still removes instantly. How can you smoothly hide / remove / delete?

    2 answers 2

     <table> <tr id="table_rows_1"> <td>xxx</td> </tr> </table> $('#table_rows_1').fadeOut(2000); 

      But they didn’t try this - $ ("p") .hide ("slow"); ?

      There is an example - http://api.jquery.com/hide/

      • saw, tried, failed. - shogun