Reputation: 1595
I have a html table that I have used the JQuery datatable plugin as follows:
(#client-table).dataTable()
This displays "Showing 1 to 3 of 3 entries" below. Is there a way to hide this text or not show it at all.
Upvotes: 1
Views: 2688
Reputation: 3330
Yes -
$('#client-table').dataTable('bInfo': false);
https://www.datatables.net/usage/features#binfo
Upvotes: 2