views:

143

answers:

1

Hello,
How would I be able to achieve something like this: have multiple textareas and only want one toolbar. What I want:
<div id="Editor">
<!-- Toolbar will go here -->
</div>

<textarea>Some content...</textarea>
<textarea>Some content...</textarea>

+1  A: 

Look at the /_samples/html/sample10.html file as that's just that example.

AlfonsoML