JSFiddle - React, Tailwind, and code Playground
HTML
<div id="foo">
<p id="bar">un</p>
<p >deux</p>
<p >trois</p>
<p >quatre</p>
</div>
JavaScript
alert($("#bar").siblings().html())
<div id="foo">
<p id="bar">un</p>
<p >deux</p>
<p >trois</p>
<p >quatre</p>
</div>
alert($("#bar").siblings().html())