$(document).ready(function(){ $('.dataTable').dataTable(); $('.dataTableFiles').dataTable( { "aaSorting": [[ 2, "desc" ]], } ); $('.dataTableManage').dataTable( { "aaSorting": [[ 1, "asc" ]], "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] } ); $('.dataTableManageFiles').dataTable( { "aaSorting": [[ 3, "desc" ]], "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] } ); //* activate current tab, if any... */ $('a[href="' + window.location.hash + '"]').trigger('click'); });