JSFiddle - React, Tailwind, and code Playground

by Paulpro

HTML

<div id="f-FIVE">blah</div>
<div id="f-SIX">blah</div>

CSS

#f-FIVE{background: #f70a58; position: absolute; width: 100px; height: 100px; left: 0px; top: 0px;}

#f-SIX{background: #f4f70a; position: absolute; width: 100px; height: 100px; left: 0px; top: 100px;}

JavaScript

$(document).ready(function(){       
    init();  
}); 

function init() {
   if ($('#f-FIVE').length)
         $('#f-FIVE').hide();
}