{hero}

language.paginate.first

Since: DataTables 1.10

Pagination 'first' button string.

Description

Text used when the pagination control shows the button to take the user to the first 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: First

Example

Set text for pagination 'first' button:

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

Related

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