JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" />
JavaScript
$("input").blur(function (e) {
if (e.which == 9)
alert("Hurray!!!");
});
<input type="text" />
$("input").blur(function (e) {
if (e.which == 9)
alert("Hurray!!!");
});