Source code

Revision control

Copy as Markdown

Other Tools

<html>
<head>
<title>A popup!</title>
</head>
<body>
<h1>hi!</h1>
<script>
if (opener) {
opener.postMessage("hello!", "*");
}
window.close();
</script>
</body>
</html>