17 lines
296 B
HTML
17 lines
296 B
HTML
<!doctype html>
|
|
<div>
|
|
<div>
|
|
<span id="start">Start</span>
|
|
<span>Another</span>
|
|
<span>End</span>
|
|
</div>
|
|
<span>Second</span>
|
|
<span id="end">Third</span>
|
|
</div>
|
|
<script>
|
|
window.getSelection().setBaseAndExtent(
|
|
start.firstChild,
|
|
2,
|
|
end.firstChild,
|
|
4);
|
|
</script>
|