HTML
<table id='t'> <tr> <td id='foo' class='ab c'>blah</td> <td id='bar' class='a c'>bloo</td> <td id='zip' class='ab c'>blop</td> </tr> </table>
Using jQuery, why the next children call returns 0
$('#t').children('tr').length
but find returns 1?
$('#t').find('tr').length
https://jsfiddle.net/o71x6co6/1/
source share