<textarea id="area" style="width:80%;height:60px">
Focus on me, the cursor will be at position 10.
</textarea>
<script>
area.onfocus = () => {
// بتأخير منعدم للتنفيذ بعد انتهاء فعل “التركيز” من المتصفّح setTimeout
setTimeout(() => {
// يمكننا ضبط أيّ تحديد
// إذا كانت البداية=النهاية، يكون المؤشّر في ذلك الموضع بالذات
area.selectionStart = area.selectionEnd = 10;
});
};
</script>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.