blob: 330d5777f9ec79be733272b6078090e1d66f1adf (
plain)
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.remove();
}
focus();
document.body.focus();
getSelection().collapse(document.body.firstChild, 0);
}
</script>
</head>
<body style="white-space:pre-wrap;" contenteditable></body></html>
|