JSFiddle - React, Tailwind, and code Playground

by steveambielli

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'});
});