JSFiddle - React, Tailwind, and code Playground

by paska

HTML

<iframe src="about:blank"></iframe>
<button>load</button>

JavaScript

$(function() {
    $("iframe").hide().load(function() {
        $(this).show();
    });
    
    $("button").click(function() {
        $("iframe").attr("src", "http://www.google.com.ar");
    });
});