Change button text "Previous" and "Next" in Datatables - TableTools

0

Does anyone know how to change the text of the default "Previous" and "Next" buttons in datatables?

    
asked by anonymous 11.06.2014 / 21:24

1 answer

1

From what I read in documentation :

$('#example').dataTable( {
  "language": {
    "paginate": {
      "previous": "Anterior",
      "next": "Próximo"
    }
  }
} );

Sources here and here

    
11.06.2014 / 22:01