JSFiddle - React, Tailwind, and code Playground

by dougneiner

HTML

<div id="one"><iframe src="http://jsfiddle.net/dougneiner/ZNr9e/show" width="20" height="20"></iframe></div>
<div><button>Move It</button></div>
<div id="two"></div>

JavaScript

$( "button" ).on( "click", function ( e ) {
    e.preventDefault();
    var iframe = $( "iframe" );
    $( "iframe" ).appendTo( iframe.parent().is( "#two" ) ? "#one" : "#two" );
});