JSFiddle - React, Tailwind, and code Playground

by Ishank Dubey

HTML

<div tabindex=2>Test</div>

JavaScript

$(function(){
$("div").focus()
$("div").keydown(function(){
    alert('tee');
});
})