16 lines
470 B
HTML
16 lines
470 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
window.addEventListener('load', () => {
|
|
const anchor = document.getElementById('id_7')
|
|
anchor.contentEditable = 'true'
|
|
anchor.spellcheck = false
|
|
const input = document.createElementNS('http://www.w3.org/1999/xhtml', 'input')
|
|
anchor.appendChild(input)
|
|
const selection = self.getSelection()
|
|
selection.selectAllChildren(input)
|
|
})
|
|
</script>
|
|
</head>
|
|
<a id='id_7'></a>
|
|
</html>
|