Is it possible to add an identifier to the last added row using jQuery DataTables (for example, <tr id="myid">...</tr> )?
$('#example').dataTable().fnAddData( [ "col_value_1", "col_value_2", "col_value_3", "col_value_4" ] );
(Add id to this new line)
jquery jquery-datatables datatables
Sebastien
source share