Source code

Revision control

Copy as Markdown

Other Tools

<!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>