JSFiddle - React, Tailwind, and code Playground
by Mi Ku
HTML
<div class="items">
<p>item1</p>
<p>item1.1</p>
<p>item2</p>
</div>
<iframe onload="oniframeLoad()" name="my.iframe" id="my.iframe" src=""></iframe>
CSS
.items > p:last-child {
border: 1px solid green;
}
JavaScript
function oniframeLoad() {
alert("Loaded!");
}
function changePage() {
frames["my.iframe"].location.href = "http://jsfiddle.net";
}
setTimeout(changePage, 2000);