JSFiddle - React, Tailwind, and code Playground

by mohammadAdil

HTML

<div id='JobWindow'></div>

CSS

#JobWindow{
    
    width:100px;
    height:100px;
    background-color:yellow;
}

JavaScript

$('#JobWindow').fadeOut(500,function(){
   $('#JobWindow').html("hello");
   $('#JobWindow').fadeIn(500);
});