JSFiddle - React, Tailwind, and code Playground

by Plippie Plop

JavaScript

$(document).ready(function() {

    for (var x = 0; x < 100; x++) {
        $.ajax({
            type: 'GET',
            url: '/echo/json',
            data: {},
            success: function (data) {
                // do nothing        
            }
        });
    }
});