JSFiddle - React, Tailwind, and code Playground
HTML
<span tabindex="1">some text</span>
<button id="one" tabindex="2">One</button>
<div>
Two
</div>
<button id="Three" tabindex="4">Three</button>
JavaScript
$('div').click(function(){
alert(':)');
});
$('div').keypress(function(){
alert(':) kp');
});
$('div').keydown(function(){
alert(':) kd');
})
$('#Three').click(function(){
alert('3');
});