blob: c8b8c2bab346c23816fbe22e873ff7597cd929f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML><html><head></head>
<body>
<div contentEditable="true" id="div" spellcheck="false"><p id="p">ABC</p></div>
<script>
// Position the caret after the "A"
var div = document.getElementById('div');
var p = document.getElementById('p');
div.focus();
var sel = window.getSelection();
sel.removeAllRanges();
var range = document.createRange();
range.setStart(p.firstChild, 1)
range.setEnd(p.firstChild, 1);
sel.addRange(range);
</script>
</body>
</html>
|