JSFiddle - React, Tailwind, and code Playground

by mhevery

HTML

<span class="hidden">hidden</span>
<span>visible</span>
<div>
    structure
    <span>child</span>
</div>
<hr>
<pre id="console"></pre>

CSS

.hidden {
    display: none;
}

JavaScript

var out = $('#console');
function write(text) { out.text(out.text() + '\n' + text); }

write($('body').find('*').filter(':visible').text());