JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<div class="shifter">
    <div class="vortex">
        I am a vortex
    </div>
</div>

CSS

.vortex-hover {
    background: green;
}

JavaScript

$(function() {
	//$('.shifter .vortex').hover(
	//	function() {
	//		$(this).parent().addClass('vortex-hover');
	//	}, function() {
	//		$(this).parent().removeClass('vortex-hover');
	//	}
	//)
    
    $('.shifter .vortex').hover(function() {
      	$(this).parent().toggleClass('vortex-hover');
    });
})