Skip to content Skip to sidebar Skip to footer

HTML Textarea: Is It Possible To Change Cursor Position?

Is it possible to change cursor position in textarea element using Javascript code?

Solution 1:

YES

function SetCursorPosition(pos)
{
    // HERE txt is the text field name
    var obj=document.getElementById('<%= txt.ClientID %><%= txt.ClientID %>');

    //FOR IE
    if(obj.setSelectionRange)
    {
        obj.focus();
        obj.setSelectionRange(pos,pos);
    }

    // For Firefox
    else if (obj.createTextRange)
    {
        var range = obj.createTextRange();
        range.collapse(true);
        range.moveEnd('character', pos);
        range.moveStart('character', pos);
        range.select();
    }
}

FROM :: http://shawpnendu.blogspot.com/2009/03/javascript-how-to-setget-cursor.html


Solution 2:


Post a Comment for "HTML Textarea: Is It Possible To Change Cursor Position?"