in the code bellow how can i select the span element with id="read-more" if iam in the anchor element with id="preface-more-btn" using $(this) (to be applied for more than one button) in jquery?
<pre>
<div id="content">
<p>
<span style="font-size: 16px;"></span>
</p>
<span id="read-more" style="display: none;"></span>
<div class="more active" id="preface-more">
<a class="btn-more" id="preface-more-btn" href="#"></a>
</div>
</div>
</pre>
thank you for helping..