Mary
Mary

Reputation: 1595

JQuery datatable - suppress display of row count

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

Answers (1)

Ross
Ross

Reputation: 3330

Yes -

$('#client-table').dataTable('bInfo': false);

https://www.datatables.net/usage/features#binfo

Upvotes: 2

Related Questions