Pagination string used by DataTables for the two built-in pagination control types ("two_button" and "full_numbers")
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the first page.
$(document).ready(function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sFirst": "First page" } } } ); } );
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the last page.
$(document).ready(function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sLast": "Last page" } } } ); } );
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the next page.
$(document).ready(function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sNext": "Next page" } } } ); } );
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the previous page.
$(document).ready(function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sPrevious": "Previous page" } } } ); } );