JSFiddle - React, Tailwind, and code Playground
by scheffield
CSS
div {
padding: 5px;
margin: 5px;
background-color: #F55F3D;
}
JavaScript
// first draw a div
$('body').append($('<div>DIV</div>'));
// then wait for two seconds
(function() {
const INTERVAL = 2 * 1000;
var start = Date.now();
while (Date.now() - start < INTERVAL){}
})();