My preference is to utilize the datatable API when creating tables.
$('#datatable-example').dataTable({
"scrollX": true,
"info" : false,
"fnDrawCallback" : function(oSettings) {
$('td').removeClass('sorting_1');
}
});
I attempted to locate the CSS class for the datatable scrollbar in order to apply custom styles, but I was unable to find a specific class. How can I go about styling custom scrollbars?