JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test"> salam </div>
CSS
#test{
width:100px;
height:100px;
background:blue;
}
JavaScript
$(document).ready($(function(e){
$("#test").hide();
});
<div id="test"> salam </div>
#test{
width:100px;
height:100px;
background:blue;
}
$(document).ready($(function(e){
$("#test").hide();
});