JSFiddle - React, Tailwind, and code Playground

by JRoger Song

HTML

<div id="info">Information</div>

JavaScript

$(document).ready(function(){
    $('#info').hover(function(){
        $(this).css("color","#af0");
    }
    ,function(){
        $(this).css("color","#f00");
    });
});