JSFiddle - React, Tailwind, and code Playground

by kodjoe mambi

HTML

<div class="im-here">This div exists on this particular page!</div>

CSS

.always-here {
   display:none;
}

JavaScript

$(document).ready(function(){
    if($(".always-here").length > 0)
    {
        $(".im-here").show();
    }
});