JSFiddle - React, Tailwind, and code Playground

by wirey00

HTML

<div id="clickme">This is good stuff</div>

<div id="dontclickme"><div id="test">This is good stuff NOT</div>This should not get selected</div>
<div id="clickme">This is good stuff</div>
<div id="clickme">This is good stuff</div>

<div id="dontclickme">This should not get selected</div>

JavaScript

$('body *').filter(function(i, v) {
    return $(v).closest('#dontclickme').length == 0;
}).css('color','red');