Consider the following brief HTML snippet:
<div ...>
<h2 class="test">...</h2>
<p>...</p>
</div>
Is it feasible to retrieve the child element (p in this case) after the h2?
I have been contemplating potential solutions such as:
.test < p
.test + p
(I need to target the specific child immediately following the h2 for a particular task. Is this achievable?)