<html>
<body>
<script language="Javascript">
function actionCalled() {
var iframe = document.createElement("iframe");
var html = '<body> Hell Iframe </body>';
iframe.src = "https://example.com";
iframe.setAttribute("height", "200px");
iframe.setAttribute("width", "400px");
document.body.appendChild(iframe);
}
</script>
</body>
<button onClick="actionCalled()"> Hello Iframe !</button>
</html>
<html>
<body>
<script language="Javascri