// Datatables in tabs that aren't initially shown need columns resized on show $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) { $(this.getAttribute("href")).find('table.dataTable').each(function() { $(this).dataTable().fnAdjustColumnSizing() }); });