JSFiddle - React, Tailwind, and code Playground
HTML
<button id="btn" class="">hover here</button>
JavaScript
$('#btn:not(.disabled-btn)').on(' mouseover', function () {
console.log('in')
alert('click');
});
<button id="btn" class="">hover here</button>
$('#btn:not(.disabled-btn)').on(' mouseover', function () {
console.log('in')
alert('click');
});