1623918.html (470B)
1 <html> 2 <head> 3 <script> 4 window.addEventListener('load', () => { 5 const anchor = document.getElementById('id_7') 6 anchor.contentEditable = 'true' 7 anchor.spellcheck = false 8 const input = document.createElementNS('http://www.w3.org/1999/xhtml', 'input') 9 anchor.appendChild(input) 10 const selection = self.getSelection() 11 selection.selectAllChildren(input) 12 }) 13 </script> 14 </head> 15 <a id='id_7'></a> 16 </html>