JSFiddle - React, Tailwind, and code Playground
HTML
hello
<br /><input type="text" id="rest" />
JavaScript
$(document).keydown(function(event) {
if (event.which === 88) {
alert('hi');
}
});
hello
<br /><input type="text" id="rest" />
$(document).keydown(function(event) {
if (event.which === 88) {
alert('hi');
}
});