JSFiddle - React, Tailwind, and code Playground
HTML
<h1> please press arrow keys in here</h1>
JavaScript
$(document).keydown(function (e) {
if (e.keyCode > 36 && e.keyCode < 41) alert("arrowkey pressed");
});
<h1> please press arrow keys in here</h1>
$(document).keydown(function (e) {
if (e.keyCode > 36 && e.keyCode < 41) alert("arrowkey pressed");
});