rows 28 29 remove

Solutions on MaxInterview for rows 28 29 remove by the best coders in the world

showing results for - "rows 28 29 remove"
Jarrett
06 Nov 2020
1const table = $('#example').DataTable(); 
2$('#example tbody').on( 'click', 'img.icon-delete', function () {    
3  table
4    .row( $(this).parents('tr') )
5    .remove()
6    .draw();
7});
similar questions
queries leading to this page
rows 28 29 remove