OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script> |
| 4 var count = 0; |
| 5 document.addEventListener("DOMNodeRemoved", function () { |
| 6 count++; |
| 7 if (count < 2) { |
| 8 var src = event.srcElement; |
| 9 document.designMode = "on"; |
| 10 src.parentNode.replaceChild(document.head, src); |
| 11 } |
| 12 }, false); |
| 13 |
| 14 window.onload = function () { |
| 15 var selection = window.getSelection(); |
| 16 document.execCommand("SelectAll", false) |
| 17 selection.deleteFromDocument(); |
| 18 window.parent.postMessage("FINISH", "*"); |
| 19 }; |
| 20 </script> |
| 21 </head> |
| 22 <body> |
| 23 <div> |
| 24 A |
| 25 <select></select> |
| 26 </div> |
| 27 </body> |
| 28 </html> |
OLD | NEW |