JSFiddle - React, Tailwind, and code Playground

by andrewray

HTML

<div></div>

CSS

div {
    width:100px;
    height:100px;
    background:green;
    margin:10px;
}

JavaScript

$(function() {
    $('div').hover(function() {
        $(this).css('background', 'blue');
    }, function() {
        $(this).css('background', '');
    });
});