{hero}

language.paginate.last

Since: DataTables 1.10

Pagination 'last' button string.

Description

Text used when the pagination control shows the button to take the user to the last page.

Note that DataTables writes this property to the document as HTML, so you can use HTML tags in the language string, but HTML entities such as < and > should be encoded as &lt; and &gt; respectively.

Type

This option can be given in the following type(s):

Default

  • Value: Last

Example

Set text for pagination 'last' button:

$('#example').dataTable( {
  "language": {
    "paginate": {
      "last": "Last page"
    }
  }
} );

Related

The following options are directly related and may also be useful in your application development.