JSFiddle - React, Tailwind, and code Playground

by mrunali tatkundawar

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');
});