JSFiddle - React, Tailwind, and code Playground

HTML

<div>
		<iframe id="src1"> </iframe>

</div>

<div>
		<iframe width="560" height="315" frameborder="0" allowfullscreen id="src2"></iframe>
</div>

JavaScript

function test(){
    document.getElementById('src1').src='http://cnn.com/';
}
function test1(){
    document.getElementById('src2').src='http://www.youtube.com/embed/0dFtmSybpuw';
}




test();
test1();