I have brought datatable's default click event on every first column by disabling responsive display's type //type: 'none',. Now, for some targeted action, I want to disable those click event from the first columns.
So, I have written this:
$('td:first-child').off('click');
But, click event hasn't been stopped. How to do this? Here is my demo.