JSFiddle - React, Tailwind, and code Playground
by shaneblake
HTML
<p>
<span class="selection">Paragraph_1_Sentence_1</span>
<br>
<span class="selection">Paragraph_1_Sentence_2</span>
<br>
</p>
<p>
<span class="selection">Paragraph_2_Sentence_1</span>
<br>
<span class="selection">Paragraph_2_Sentence_2</span>
</p>
JavaScript
$(function() {
$('.selection').click(function() {
$(this).css('background-color', 'yellow').siblings().css('background-color', 'white');
});
});