-1:000000000000 | 0:2369d35f9ba5 |
---|---|
1 <html> | |
2 <head> | |
3 <script> | |
4 | |
5 function boom() | |
6 { | |
7 document.getElementById("div").contentEditable = "true"; | |
8 document.getElementById("div").focus(); | |
9 document.getElementById("div").contentEditable = "false"; | |
10 | |
11 document.getElementById("table").contentEditable = "true"; | |
12 } | |
13 | |
14 </script> | |
15 </head> | |
16 | |
17 <body onload="boom();"> | |
18 | |
19 <table id="table"><td></td></table><div id="div"></div> | |
20 | |
21 </body> | |
22 | |
23 </html> |