blob: 4fba13d5d8eb3f0939e9265c709a00eec452ddf0 (
plain)
1
2
3
4
5
6
7
8
|
<body contenteditable=true>x y
<script>
document.body.firstChild.splitText(2) // "x " and " y"
.splitText(1) // "x", " " and " y"
.splitText(1); // "x", "", " " and " y"
getSelection().collapse(document.body, 1);
document.execCommand("forwardDelete");
</script>
|