1534394.html (841B)
1 <html> 2 <head> 3 <script> 4 5 function start () { 6 const sel = document.getSelection() 7 const range_1 = new Range() 8 const noscript = document.getElementById('id_24') 9 const map = document.getElementById('id_26') 10 sel.selectAllChildren(noscript) 11 const range_2 = range_1.cloneRange() 12 range_2.selectNode(map) 13 const frag = range_2.extractContents() 14 range_2.insertNode(noscript) 15 document.documentElement.contentEditable = true 16 document.execCommand('removeFormat', false,) 17 noscript.contentEditable = false 18 document.execCommand('insertText', false, '�\n') 19 } 20 21 window.addEventListener('load', start) 22 </script> 23 </head> 24 <body> 25 <big class=""> 26 <map class="" id="id_26"> 27 <noscript class="" id="id_24"> 28 </body> 29 </html>