OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <input id='target' type='text' value='16-char header. ^^ 16-char footer.'></inpu
t> | 4 <input id='target' type='text' value='16-char header. ^^ 16-char footer.'></inpu
t> |
5 <script> | 5 <script> |
6 function selectCaret() { | 6 function selectCaret() { |
7 var text = document.getElementById('target'); | 7 var text = document.getElementById('target'); |
8 text.focus(); | 8 text.focus(); |
9 text.setSelectionRange(17, 17); | 9 text.setSelectionRange(17, 17); |
10 } | 10 } |
11 function selectRange() { | 11 function selectRange() { |
12 var text = document.getElementById('target'); | 12 var text = document.getElementById('target'); |
13 text.focus(); | 13 text.focus(); |
14 text.setSelectionRange(16, 18); | 14 text.setSelectionRange(16, 18); |
15 } | 15 } |
16 window.onload = select; | 16 window.onload = select; |
17 </script> | 17 </script> |
18 </body> | 18 </body> |
19 </html> | 19 </html> |
20 | 20 |
OLD | NEW |