Looking for a way to hide the second span element within a div that does not have an ID, but its parent div does. The goal is to target and hide the span that contains "second".
<div id="example">
<div>
<span>First</span>
<span>Second</span>
</div>
</div>