JSFiddle - React, Tailwind, and code Playground

by David Thomas

HTML

<a href="#">Some link text</a>
<a href="#">Some link text</a>
<a href="#">Some link text</a>

CSS

a:link {
    display: block;
    color: #0f0;
}

a.selectedLink {
    color: #00f !important;
}

JavaScript

$('a').click(
    function(){
        $('.selectedLink').removeClass('selectedLink');
        $(this).addClass('selectedLink');
        return false;
    });