{hero}

language.paginate.next

Since: DataTables 1.10

Pagination 'next' button string.

Description

Text to use for the 'next' pagination button (to take the user to the next 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.

    Please note that the default value of this parameter was changed in DataTables 2. It is now `›`, while in DataTables 1.x it was `Next`.

Type

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

Default

  • Value:

Example

Set text for pagination 'next' button:

new DataTable('#myTable', {
	language: {
		paginate: {
			next: 'Next page'
		}
	}
});

Related

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