JSFiddle - React, Tailwind, and code Playground

by Oleg Khobotov

HTML

<body ontouchstart="">
<span>Тестовая ссылочка</span>
</body>

CSS

span{
    font-size: 2em;
    color: red;
    margin: 3em;
    display: block;
    cursor: pointer;
}
span:active{
    color: blue
}

JavaScript

$('span').focus{
    $(this).css('color', 'blue');
    }