JSFiddle - React, Tailwind, and code Playground
by jeffshaver
HTML
<div class="sample">
</div>
<div class="sample">
</div>
CSS
.sample {
width:200px;
height:200px;
background: #aaa;
}
JavaScript
$('.sample').hover(function() {
console.log($(this));
});