JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

HTML

<input type="text" id="check">

JavaScript

$( "#check" ).one( "focus", function() {
  alert("This will be displayed only once.");
});