この要素が内包する要素の中から要素を探す。
jQueryObject.find('selector')
jQueryObject.find(element)
jQueryオブジェクトのfindメソッドで子要素を取得するサンプルを次に示す。
<ol id="lotr">
<li>The Fellowship of the Ring</li>
<li>The Two Towers</li>
<li>The Return of the King</li>
</ol>
<ol id="con">
<li>The Magician's Nephew</li>
<li>The Lion, the Witch and the Wardrobe</li>
<li>Prince Caspian</li>
</ol>
<script>
$('#lotr').find('li').css('color', 'red')
</script>
OpenJS Foundation and jQuery contributors (2022) .find()