I have this datatable setup:
$(document).ready(function() {
$(\'#RectifiedCount\').dataTable( {
"bJQueryUI": true,
"bProcessing
Mutch better way instead of hooking a click event, using just jquery and TableTools:
"oTableTools": {
"sRowSelect": "single",
"fnRowSelected": function(node) {
var row = $(node).find('td');
//all cells
$.each(row, function(index, td) {
console.log($(td).text());
});
console.log("Specific cell content: " + $(row[2]).text());
}
}