JSFiddle - React, Tailwind, and code Playground
JavaScript
var iframe= document.createElement('iframe');
iframe.style.display= "none";
iframe.src= "/";
iframe.onload= function(){
console.log(iframe.contentDocument.body.innerHTML);
};
document.body.appendChild(iframe);