You do not understand. You can have two forms on a page (probably not two quick reply instances, since for other reasons you probably can't instantiate the editor twice at the same time), you just cannot nest them.
You can have
HTML Code:
<form></form>
<form></form>
but not
HTML Code:
<form>
<form>
</form>
</form>
which is what you are asking for, since all posts on a page are surrounded by the inline moderation form.
Quote:
Originally Posted by Jennifer2010
What about a form that once submitted, copies the content of the form, to the real quick reply box form and submits it?
|
You can do that, as long as the form is not inside another form. Meaning: You can't do what you want this way. See above.