240933-2-ref.html (663B)
1 <!DOCTYPE html> 2 <html> 3 <body onload="setup()"> 4 <textarea id="ta" dir="rtl"> 5 6 אaב 7 8 </textarea> 9 <textarea id="tb"> 10 11 abc 12 13 </textarea> 14 15 <div id="coords1"></div> 16 <div id="coords2"></div> 17 18 <script> 19 function setup() { 20 document.getElementById("ta").selectionStart = 3; 21 document.getElementById("ta").selectionEnd = 3; 22 document.getElementById("coords1").innerHTML = document.getElementById("ta").selectionStart; 23 document.getElementById("tb").selectionStart = 3; 24 document.getElementById("tb").selectionEnd = 3; 25 document.getElementById("coords2").innerHTML = document.getElementById("tb").selectionStart; 26 } 27 </script> 28 </body> 29 </html>