How do you remove the 'Show Entries' info below a datatable from the DT package in R?
I know about the solutions below, but I cannot figure out how to make them work when using them with rmarkdown.
[1] How to hide "Showing 1 of N Entries" with the dataTables.js library
[2] how to disable show entries property in jquery datatable
I have tried to add the below to the css file for rmarkdown, but that does not seem to work.
$('#example').dataTable({
"bInfo": false
});