JSFiddle - React, Tailwind, and code Playground
by eddiemonge
HTML
<ul>
<li>this</li>
<li>that</li>
</ul>
CSS
li { background: #eee; margin: 20px; border: 1px solid black; }
JavaScript
$("li").live('hover', function(e){
console.log(e.type);
});