There\'s a problem with datatables.js - when the page loads, the css with pagination is slightly delayed, so the whole data shows very quickly initally before it shows the c
As per the comment:
CSS:
#list { display: none; }
JS:
$('#list').DataTable({ "columns": [ { "width": "45%" }, null, null ], "initComplete": function(){ $("#list").show(); } });
Working JSFidlle here. Hope that helps.