JSFiddle - React, Tailwind, and code Playground

by Ashish Kasama

HTML

<div class="something">
        <img class="pp" src="http://lucentinnovation.com/lucentinnovation/img/xlogo.png.pagespeed.ic.oRv1jzpUeR.png" />
        
    </div>

JavaScript

var $frame = $('<iframe />').css({
    position: 'fixed',
    top: 0,
    left: 0,
    width: '100%',
    height: '100%'
}).appendTo('body');

$('head').children().appendTo($frame.contents().find('head'));
$('body').children().not($frame).appendTo($frame.contents().find('body'));