JSFiddle - React, Tailwind, and code Playground

by batcave

HTML

<div id="div" style="height:50px;width:50px;border:2px solid blue;" class="ui-widget-content" tabindex="0"></div>

JavaScript

$('#div,#input').keyup(function(event){
    console.log('Key Code:', event.keyCode);
});