Get the descendants of each element in the current set of matched elements, filtered by a selector.
$('div').find('span').css('color', 'red');
<div>
<span style="color: red;">...</span>
</div>
| Parameter | Type | Description |
|---|---|---|
| selector | string | A string containing a selector expression to match elements against. |
Returns: A new SR object.