JSFiddle - React, Tailwind, and code Playground
by neal_fletcher
HTML
<div id="outerdiv">
<iframe id="innerframe" src="http://www.mollymeg.com" name="frame1" scrolling="no" frameborder="no" align="center">
</iframe>
</div>
CSS
#outerdiv {
width:140px;
height:50px;
overflow:hidden;
position:relative;
}
#innerframe {
position:absolute;
left:-845px;
width:980px;
height:500px;
}
JavaScript
setTimeout(function(){
$( '#innerframe' ).attr( 'src', function ( i, val ) { return val; });
}, 3000);