mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
18 lines
450 B
HTML
18 lines
450 B
HTML
<!DOCTYPE HTML><html><head>
|
|
</head>
|
|
<body>
|
|
<span id="x" contenteditable="true" spellcheck="false">navigable__|unnavigable</span><br />
|
|
<script>
|
|
// Position the caret after "u"
|
|
var sel = window.getSelection();
|
|
sel.removeAllRanges();
|
|
var range = document.createRange();
|
|
var x = document.getElementById('x');
|
|
var t = x.firstChild;
|
|
range.setStart(t, 13);
|
|
range.setEnd(t, 13);
|
|
sel.addRange(range);
|
|
x.focus();
|
|
</script>
|
|
</body>
|
|
</html>
|