OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
Charlie Reis
2014/04/29 16:55:25
This file should be use a similar naming scheme to
| |
2 <head> | |
3 <script> | |
4 function onloadTest() { | |
5 var a = document.createElement('a'); | |
6 a.href='http://www.google.com'; | |
Charlie Reis
2014/04/29 16:55:25
Let's not use a network link here. Would title1.h
| |
7 a.target = '_blank'; | |
8 document.body.appendChild(a); | |
9 a.click(); | |
10 } | |
11 </script> | |
12 </head> | |
13 <body onload="onloadTest()">This page has no title.</body> | |
14 </html> | |
OLD | NEW |