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 namevar obj=document.getElementById('<%= txt.ClientID %><%= txt.ClientID %>');

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

    // For Firefoxelseif (obj.createTextRange)
    {
        varrange = 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?"