JSFiddle - React, Tailwind, and code Playground
HTML
<div id="bar">Bar</div>
JavaScript
$("body").one("click", "#foo", function() {
alert("This displays if #foo is the first thing clicked in the body.");
});
setTimeout(function(){
$('body').prepend('<div id="foo">Foo</div>');
}, 1000);