OLD | NEW |
1 <html> | 1 <html> |
2 | 2 |
3 <script> | 3 <script> |
4 function onload() { | 4 function onload() { |
5 var frame = document.createElement("iframe"); | 5 var frame = document.createElement("iframe"); |
6 var div = document.getElementById("myDiv1"); | 6 var div = document.getElementById("myDiv1"); |
7 div.appendChild(frame); | 7 div.appendChild(frame); |
8 | 8 |
9 frame.contentDocument.body.innerHTML += | 9 frame.contentDocument.body.innerHTML += |
10 "Some text<br>An image <img src='blue_background.png'.><br><b>Some more te
xt</b>" | 10 "Some text<br>An image <img src='blue_background.png'.><br><b>Some more te
xt</b>" |
(...skipping 17 matching lines...) Expand all Loading... |
28 </script> | 28 </script> |
29 | 29 |
30 <body onload="onload()"> | 30 <body onload="onload()"> |
31 This page creates empty iframes and adds content to them dynamically.<br><br> | 31 This page creates empty iframes and adds content to them dynamically.<br><br> |
32 <div id="myDiv1"></div> | 32 <div id="myDiv1"></div> |
33 <div id="myDiv2"></div> | 33 <div id="myDiv2"></div> |
34 <div id="myDiv3"></div> | 34 <div id="myDiv3"></div> |
35 </body> | 35 </body> |
36 | 36 |
37 </html> | 37 </html> |
OLD | NEW |