JSFiddle - React, Tailwind, and code Playground

by jasonwilczak

HTML

<div>
    <h1>Hi</h1>
    <span id="status">loading iframe</span>
    <iframe id="myframe" src="http://jsfiddle.net"></iframe>
</div>

JavaScript

var iframe = document.getElementById('myframe');
var status = document.getElementById('status');
debugger;
iframe.onload = function(){  status.innerHTML = "loaded";};