JSFiddle - React, Tailwind, and code Playground

by vovcat

HTML

<div class="a"></div>
<div class="b"></div>

CSS

div { width:50%;margin:10px auto;padding:10px;border:1px solid #d00; }
div.b { border-color:#0d0; }

JavaScript

$(function() {
    $({}).queue(function(next) {
        $('.a').load('/echo/html/', {
            html: "div.a",
            delay: 1,
        }, next);
    }).queue(function(next) {
        $('.b').load('/echo/html/', {
            html: "div.b",
            delay: 1,
        }, next);
    });
});