1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<html> <head> <script> onload = function() { var el; while (el = document.querySelector("br")) { el.parentNode.removeChild(el); } focus(); document.body.focus(); getSelection().collapse(document.body.firstChild, 0); } </script> </head> <body style="white-space:pre-wrap;" contenteditable></body></html>