3 <title>Remove Frame on Unload
</title>
5 function openWindow() {
6 var w
= window
.open("title1.html");
10 window
.addEventListener('unload', function() {
11 var f
= document
.getElementById("f");
12 document
.body
.removeChild(f
);
17 <button onclick=
"openWindow()">Open Window
</button>
18 <p>Navigate to another page to cause frame to be removed.
</p>
19 <iframe id=
"f" src=
"about:blank"></iframe>