JSFiddle - React, Tailwind, and code Playground
by George Batt
HTML
<input type="number">
<input type="text">
<textarea></textarea>
JavaScript
$(document.body).on('keydown', '*:not(input[type="text"], textarea)', function(event) {
console.log('Trigger');
});