JSFiddle - React, Tailwind, and code Playground

by seano666

HTML

<p id="one">lkajsdfk</p>
<p id="two">lkjasdklfjae</p>
<p id="three">wefw</p>
<p id="four">retwert</p>
<p id="five">czcxv</p>
<p id="six">wwe</p>
<p id="seven"></p>
<p id="banana">asdfadf</p>

JavaScript

$(document).ready(function(){
    $("p").each(function(index){
        if ($(this).html() == ""){
            alert(this.id);
        }
    });
});