file_windowwatcher_win_open.html (216B)
1 <!DOCTYPE HTML> 2 <html> 3 <body> 4 Opened Window<br/> 5 6 <script> 7 8 window.onload = function() { 9 window.opener.parent.parent.postMessage({result: window.location.href}, "*"); 10 window.close(); 11 } 12 13 </script> 14 </body> 15 </html>