JSFiddle - React, Tailwind, and code Playground
by afshinprofe
HTML
<div id="client-list">
<p>
<a href="#">Häagen Dazs</a>
<a href="#">Hugo Boss Rodeo Drive</a>
<a href="#">Ford</a>
<a href="#">MOCA Contemporaries</a>
<a href="#">XBOX 360 Halo 3 Sneak Preview</a>
<a href="#">Saddlerock Smith & Basso Weddings</a>
<a href="#">Christie's</a>
<a href="#">Instyle Magazine + Ming by Mango</a>
</p>
CSS
.active { border: 1px solid #ff893b;
background:red;
color:white;}
JavaScript
$('a').click(function(){
$('a').removeClass('active');
$(this).addClass('active');
});