Answers for "destroy()"

0

remove previous datatable instance

//Destroy the old Datatable
$('#equictntbl').DataTable().clear().destroy();
Posted by: Guest on November-11-2020
-1

destroy method

Javascript12345var table = $('#myTable').DataTable(); $('#tableDestroy').on( 'click', function () {    table.destroy();} );
Posted by: Guest on January-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language