jquery datatables previous next button color change code example
Example 1: can i change previous button in datatable
Javascript1234567$('#example').dataTable( { "language": { "paginate": { "previous": "Previous page" } }} );
Example 2: can i change previous button in datatable
Plain text12345678$(el).dataTable({ language: { 'paginate': { 'previous': '<span class="prev-icon"></span>', 'next': '<span class="next-icon"></span>' } }});