Datatables has an option to select the number of records shown per page. The default value starts from 10, 25, 50 and 100. How can I change it to start from 5 instead of 10? 10
$.extend(true, $.fn.dataTable.defaults, { "lengthMenu": [[5, 10, 15, 20, 25], [5, 10, 15, 20, 25]], "pageLength": 5 });