JSFiddle - React, Tailwind, and code Playground

by albertjan

HTML

<p>Fruit <span class="unc_path">\\apples\oranges\pears</span></p>
<p>Fruit <span class="unc_path">\\apples\oranges\pears</span></p>

CSS

.selected {
    background-color: hotpink;
}

JavaScript

$('.unc_path').click(function (){
        $('.selected').removeClass('selected');
        $(this).addClass('selected');
    });