JSFiddle - React, Tailwind, and code Playground
by seyenaz
HTML
<h3 id="my-navigation">
<a href="#">ANKETA</a>
<a href="#">STATISTIKA</a>
</h3>
CSS
#my-navigation a.active {
text-decoration:none;
color:#E0EBEB;
}
JavaScript
$('#my-navigation a').click(function () {
$('#my-navigation a').removeClass('active');
$(this).addClass('active');
});