15 lines
216 B
HTML
15 lines
216 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body>
|
|
Opened Window<br/>
|
|
|
|
<script>
|
|
|
|
window.onload = function() {
|
|
window.opener.parent.parent.postMessage({result: window.location.href}, "*");
|
|
window.close();
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|