Is there a way with the jquery datatables plugin to hide (and show) a table column?
I figured out how to reload the table data: using fnClearTable and <
fnClearTable
With the api you can use
var table = $('#example').DataTable(); table.column( 0 ).visible( false );
Look this info:
enter link description here