JSFiddle - React, Tailwind, and code Playground

by thecodeparadox

HTML

<input class="inactive" type="button" value="inactive">

<input type="button" value="active"/>

JavaScript

$("input:not('.inactive')").hover(function() {
  alert(this.value);
})