DataTables plug-in - Display scrollbar below tfoot tag?
I use jQuery DataTables plug-in and "scrollX":true for horizontal scrolling. Why scroll bar appears above tfoot tag? How to make it appear below footer? var table = $('#example') .DataTable( { "scrollX": true, "scrollCollapse": true, "dom": 'Zlrtip', "colResize": { "tableWidthFixed": false, //"handleWidth": 10, "resizeCallback": function(column) { } }, "searching": false, "paging": false, "info": false, "deferRender": true, "sScrollX": "190%" }); See JSFiddle example demonstrating the problem. You need to add the following code to you DataTables initialization options: "fnInitComplete":