JQuery Datatables. How can I change the current page programmatically?
from the docs: http://datatables.net/ref#fnPageChange
$(document).ready(function() {
var oTable = $('#example').dataTable();
oTable.fnPageChange( 'first' );
} );
var oTable = $('#example').dataTable();
oTable.fnPageChange( 'first' );
OR
oTable.fnPageChange( 0 );