1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html> <script> function test() { focus(); var div = document.querySelector("div"); div.focus(); getSelection().collapse(div.firstChild, 0); } </script> <body onload="test()"> <div contenteditable spellcheck="false" style="outline: none">foo<span>bar</span>baz</div> </body> </html>