OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html id='root'> | |
3 <body> | |
4 <input type="text" id="inputfield" style='width:5em' value='Lengthy text goes he re.' /> | |
5 <script> | |
6 function select() { | |
7 var input = document.getElementById('inputfield'); | |
8 var range = input.setSelectionRange(0, 6); | |
9 window.getSelection().addRange(range); | |
10 } | |
11 window.onload = select; | |
12 </script> | |
13 </body> | |
14 </html> | |
15 | |
OLD | NEW |