私は次のHTMLを持っています。
<div>
<table></table>
<div><table id="startingPoint"></table></div>
<table><tfoot><tr id="getThis"></tr></tfoot></table>
</div>
find()を使用すると、期待どおりに#getThisが選択されます。
$('#startingPoint').parent().next().find('tfoot tr')
children()を使用しても、#getThisは選択されません。なんで?
$('#startingPoint').parent().next().children('tfoot tr')