JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
</div>
<div class="box"></div>
CSS
div {
height: 150px;
}
JavaScript
$('.box:empty').text('empty!');
<div class="box">
</div>
<div class="box"></div>
div {
height: 150px;
}
$('.box:empty').text('empty!');