JSFiddle - React, Tailwind, and code Playground
HTML
<div id="one"></div>
JavaScript
var iframe = document.createElement("iframe");
iframe.style.display = "none";
// I start the file download
iframe.src ='http://www.test.com';
iframe.onload = (function (){
iframe.style.display = "block";
alert("loaded");
});
document.getElementById("one").appendChild(iframe);