I have a TextArea, textBox and a button. TextArea has some text e.g This is a cat.
Now my requirement is If someone set cursor position in TextArea and enter text in textbox and click on button the text should be append in cursor position instead of last. e.g.
TextArea: This is a cat. Cursor position: after "a" Entered Text in TextBox: black
Output: This is a black cat.
How can I do this using javascript.
Thanks in advance.