JSFiddle - React, Tailwind, and code Playground

HTML

<button id="btn" class="">hover here</button>

JavaScript

$('#btn:not(.disabled-btn)').hover(function() {
    alert('click');
});