11 lines
199 B
HTML
11 lines
199 B
HTML
<!doctype html>
|
|
<div>
|
|
<span id="start">Start</span>
|
|
</div>
|
|
<div>
|
|
<span>Prev</span>
|
|
<span id="end">End</span>
|
|
</div>
|
|
<script>
|
|
window.getSelection().setBaseAndExtent(start,0,end, 0);
|
|
</script>
|