I have the following HTML table is rendered to my browser.I am creating this table from my ASP.NET codebehind file.
-
2020-12-08 21:36
As of jquery 1.6 you can use promises to execute a single callback after all td animations are finished.
$('td', row).each(function() {
$(this).fadeOut('slow', 'linear');
})
.promise()
.done(function() {
$(this).parent('tr').remove();
});