I have a jQuery datatable row:
table = $('#reports').DataTable()
row = table.row(rowIndex)
How do I get the HTML class from it? (It is striped, and I want to find out if it is odd or even.)
I have tried:
row.hasClass('odd')
row.className
row.attr('class')
Any ideas?