JSFiddle - React, Tailwind, and code Playground

by cambraca

HTML

hello <input type=text />

JavaScript

$(document).keypress(function(event) {
    if (event.keyCode == 9) //TAB key
    {
        alert('this is the tab key!');
    }
});