Skip to content Skip to sidebar Skip to footer

Ie8 Inserting Text To Textarea Problem

I have some code to insert tags to textarea (for Internet Explorer). But I have problem with IE8. If there is lots of text and I try to insert text somewhere in the end - it's scr

Solution 1:

Two options:

  • Manipulate the scrollTop property to move the scrollbar to the end:
    text1.scrollTop = text1.scrollHeight;
  • Move the caret to the desired position using the moveStart() method.

Post a Comment for "Ie8 Inserting Text To Textarea Problem"