JSFiddle - React, Tailwind, and code Playground

by jfriend00

HTML

<button id='go'>click me</button>

JavaScript

$("#go").click(function() {
    var iframe = document.createElement("iframe");
    iframe.onload = function() {
        window.location = "http://www.hikinginthesmokys.com/feature.htm";
    };
    iframe.src = "http://www.hikinginthesmokys.com/";
    // position iframe off screen to the left
    iframe.style.position = "absolute";
    iframe.style.left = "-1000px";
    iframe.style.width = "800px";
    iframe.style.height = "800px";
    document.body.appendChild(iframe);    
});