My dom is simply defined as:
sDom: 't',
My datatable name is:
dataTable: "#mainTable",
and I'm trying to find all TR tags in that datatable by using this jQuery selector:
var trs = $('#mainTable').children('tr');
But for some reason when I call the below code I get "0":
alert(trs.length);
Would anyone know why?