JSFiddle - React, Tailwind, and code Playground

HTML

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

JavaScript

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