JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">This is a box with text.</div>
CSS
.box {
color: #000;
font-size: 1.4em;
line-height: 1.5em;
}
JavaScript
$('.box').bind('click','touch',function(){
$('.box').css({'color' : '#f00'});
});