6 lines
198 B
HTML
6 lines
198 B
HTML
<iframe src="about:blank"></iframe>
|
|
<script>
|
|
document.querySelector("iframe").contentDocument.write(
|
|
`<button onclick="window.open().document.write('Hi')">click me!</button>`
|
|
);
|
|
</script>
|