Would probably be better for me to create a pull request but it's late and I'm lazy. :) However, would be great to have var tds = $('td', tr); line: 398 as this: var tds = $('td, th', tr);, because I personally just dealt with a table generated from Django that had the <th> tag instead of <td> for the exact same column I wanted to make the expand on, which forced me to spend more than one hour until finding out that this is actually a <th> tag problem and not your or DT plugin.
Would probably be better for me to create a pull request but it's late and I'm lazy. :) However, would be great to have
var tds = $('td', tr);line:398as this:var tds = $('td, th', tr);, because I personally just dealt with a table generated fromDjangothat had the<th>tag instead of<td>for the exact same column I wanted to make theexpandon, which forced me to spend more than one hour until finding out that this is actually a<th>tag problem and not your orDTplugin.