JSFiddle - React, Tailwind, and code Playground

HTML

<button onclick="windowOpen()">Open Window</button>

<script>
function windowOpen() {

		var iframe = "<iframe src='https://wiki.selfhtml.org/wiki/JavaScript/Window/open' width='200' height='200'></iframe>";// Change "src" with your html Link
    
    var openWindow = window.open("", "Opened Window", "width=500,height=500,location=no");
    
    openWindow.document.write(iframe);
}

</script>