$(document).ready(function() {
$('#example').DataTable( {
"initComplete": function ( settings ) {
$('#example thead tr th').each(function() {
if ($(this).html() === 'Office') {
$(this).css("color", "goldenrod");
}
});
}
} );
} );