I am using jQuery datatable.By default it is showing first page as initial page .But i want to show the second page as default page.When i am using YUI data table .In that
With version 1.10 of DataTables there is a displayStart option that will allow you to set the default page.
Note that the displayStart value is a zero based count of records, not pages. If you have 10 records per page, displayStart: 10 will show page 2
$('#my-datatable').DataTable( {
'displayStart': 10
} );
https://datatables.net/reference/option/displayStart