titleChange.html (329B)
1 <html> 2 <head> 3 <meta charset="utf-8" /> 4 </head> 5 <header><title>Title1</title></header> 6 <body> 7 <script> 8 addEventListener("load", function () { 9 setTimeout(function () { 10 document.title = "Title2"; 11 }, 100); 12 }); 13 </script> 14 </body> 15 <iframe src="hello.html"></iframe> 16 </html>