• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html>
2<html>
3<head>
4  <style>
5    .text {
6      font-family: courier;
7      font-size: 12px;
8      padding: 0px;
9      margin: 0px;
10      border: 0px;
11    }
12  </style>
13</head>
14<body>
15<textarea id='target' class="text" type='text' rows="3" cols="20">
16First Line
17Second Text Row
18</textarea>
19<script>
20    function selectCaret() {
21        var text = document.getElementById('target');
22        text.focus();
23        text.setSelectionRange(17, 17);
24    }
25    function selectRange() {
26        var text = document.getElementById('target');
27        text.focus();
28        text.setSelectionRange(1, 3);
29    }
30</script>
31</body>
32</html>
33
34