JSFiddle - React, Tailwind, and code Playground

by Dineshkani

HTML

<div id="firstdiv" class="sample">
    <div name="jQuery"> Hello Jquery </div>
</div>

CSS

.sample{
    width: 250px;
    background-color: grey;
    color: white;
    text-align: center;
    height: 180px;
    line-height: 80px;
    padding: 10px;
    display: none;
}

JavaScript

$("#firstdiv").delay('3000').fadeIn("slow");