JSFiddle - React, Tailwind, and code Playground

by Luiz Silva

HTML

Frame: <button type="button" onclick="trocaPagina()">Trocar conteúdo</button>

<iframe id="frame" src="http://doc.jsfiddle.net/" />

CSS

iframe {
    width: 100%;
    height: 400px;
}

JavaScript

function trocaPagina() {
    var f = document.getElementById('frame');
    f.src = 'http://blog.jsfiddle.net/';
}