JSFiddle - React, Tailwind, and code Playground

by Emmanuel Garcia

HTML

<div class="grande">

<div class="azul"></div>
</div>

JavaScript

$('.grande').each(function() {
        var azul = $(this);
        if (azul.html() == '99') {
            azul.addClass('hidden');        
        }
    });