var oTable = $("#whatever").dataTable({ // ....options here }); // then we can do... $(this).parents("TR").fadeOut("slow", function () { var pos = oTable.fnGetPosition(this); oTable.fnDeleteRow(pos); });