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.");
});
by ChrisStanyon
<input type="text" id="check">
$( "#check" ).one( "focus", function() {
alert("This will be displayed only once.");
});