Вы должны создать другие элементы ввода, чтобы перейти внутрь формы.
Что-то вроде этого:
</p>
<pre>
// create the form element
var form = new Element('form', {'action' : 'your/action', 'class' : 'inplaceeditor-form'});
//create the textbox
var textarea = new Element('textarea', {'name' : 'myTextarea'});
//create the submit button
var button = new Element('input', {'type' : 'submit', 'value' : 'Submit Me!'});
// this puts the textarea and the button into the form
form.adopt(textarea,button);
// put the form inside what ever container you user
$('myContainer').adopt(form);
// the code above should give you this
<div id="myContainer">
<form action="your/action" method="post" class="inplaceeditor-form">
<textarea name="myTextarea"></textarea>
<input type="submit" value="Submit Me!" />
</form>
</pre>
<p>