<script>
$(document).ready(function() {
$('#example').DataTable({
dom: 'Bfrtip',
buttons: [
{
extend: 'print',
}
]
});
});
</script>
This is the script I have got from jquery data table documentation which is printing properly my jquery data table. Just I want to remove the header whixh is getting printed alongwith this data. How can I remove it ?