JSFiddle - React, Tailwind, and code Playground
by Tyler N.
JavaScript
$('element').hover(
function() {
$(this).addClass('over');
},
function() {
$(this).removeClass('over');
}
);
by Tyler N.
$('element').hover(
function() {
$(this).addClass('over');
},
function() {
$(this).removeClass('over');
}
);