I have dynamically relocatable divs in a Document into which I want to place rich text. I want to view a rich text editor as comprised of two parts - its wysiwyg and the buffer into which it places entered data under the control of its wysiwyg. In other words, I am conceptually delinking the two components, such that the rich text editor uses my buffer, which would be any of my dynamically-chosen divs.
Q1. To accomplish this, can the rich text editor be viewed and used as if it were a library call function, where it outputs to a pointer, which is my div? In the construct, there would only be one copy of the rich text editor and many divs to which it could be applied.
Q2. Can Javascript be used to accomplish this construct/functionality and which rich text editor would you recommend?