Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<html>
<script>
window.addEventListener('message', e => {
const port = e.ports?.[0];
port.postMessage("hello from iframe");
});
</script>
</html>