I am using jQuery DataTables.
I want to remove the search bar and footer (showing how many rows there are visible) that is added to the table by default. I just wan
Just a reminder you can't initialise If you encounter same issue then you can set DataTable on the same element twice.
searching and paging false while initializing DataTable on your HTML like this
$('#tbl').DataTable({
searching: false,
paging: false,
dom: 'Bfrtip',
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print'
]
});