Level 102
What version of datatables are you running? This was added in 1.10 I believe
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I want to change Pagination Text Previous to Prev
How is this possible?
<table class=" table table-bordered table-striped table-hover datatable datatable-Permission">
--------
</table>
jQuery Code:
$('.datatable-Permission:not(.ajaxTable)').DataTable({
buttons: dtButtons,
language: {
paginate: {
previous: 'Prev',
next: 'Next'
},
aria: {
paginate: {
previous: 'Previous',
next: 'Next'
}
}
}
})
Not working!!!!
Please or to participate in this conversation.