JSFiddle - React, Tailwind, and code Playground
by mohammadAdil
HTML
<div id='d'>sample div</div>
JavaScript
function findThis() {
var found = null;
Y.all("body #noHero").some(function(node, index, nodeList) {
found = node;
return(true);
});
return(found);
}
if (findThis()) {
alert("found");
}