I'm using DataTables Select extension so I can select multiple rows. In this jsfiddle example it works, except for the fact that the rows are also selected when an hyperlink is clicked. I want hyperlinks excluded from selecting rows. How can I do this?
This is my DataTables Select initialization:
$('#example').DataTable({
select: {
style: 'multi',
selector: 'tr:not(a)'
}
});