JSFiddle - React, Tailwind, and code Playground

HTML

<form action="https://api.github.com/users/bob"></form>
<form action="https://api.github.com/users/tom"></form>
<form action="https://api.github.com/users/jack"></form>

JavaScript

var requests = $('form').map(function () {
	return $.get(this.action);
}).get();

$.when.apply(undefined, requests).done(function () {
  console.log('All Loaded!', arguments);
});