JSFiddle - React, Tailwind, and code Playground

HTML

<div id="foo">Foo</div>
<div id="bar">Bar</div>

JavaScript

$("body").one("click", "#foo", function() {
    alert("This displays if #foo is the first thing clicked in the body.");
});