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
You can use sDom attribute. Code looks something like this.
$(document).ready(function() { $('#example').dataTable( { 'sDom': '"top"i' } ); } );
İt hides search and pager box.