There is no option in the options object by default. However, you can call the fnPageChange function on a datatable to set pagenumber.
var table = $('#data_table').dataTable(); table.fnPageChange(2,true);
Where 2 is the page number, and the second parameter requests data for redrawing.
https://datatables.net/ref#fnPageChange
kavin source share