JSFiddle - React, Tailwind, and code Playground

by Tom Randolph

HTML

<ul>
    <li>Thing</li>
    <li>AnotherThing</li>
</ul>

CSS

ul li{
    background-color: #CCCCCC;
    margin: .25em;
}

JavaScript

$(function(){
    $("li").hover( function(){
        $(this).text( $(this).text() + "+" );
    });
});