5 lines
188 B
HTML
5 lines
188 B
HTML
<!doctype html>
|
|
Start <span id="node2">text2</span><span id="node1">text1</span> End
|
|
<script>
|
|
window.getSelection().setBaseAndExtent(node2.firstChild, 2, node1.firstChild, 3);
|
|
</script>
|