datatables remove pagination

Solutions on MaxInterview for datatables remove pagination by the best coders in the world

showing results for - "datatables remove pagination"
Jordyn
04 Feb 2016
1// set paging parameter in false on object configuration
2// "paging" : false
3
4$(document).ready(function() {
5    $('#example').DataTable( {
6        "paging":   false,
7        "ordering": false,
8        "info":     false
9    } );
10} );