シンプルなようにCKEDITOR ( http://ckeditor.com/ )を使用する必要があります
<input type="text" />
ファイル config.js を変更して、次の設定を追加しました。
config.toolbar = 'SimpleVersion';
config.toolbar_SimpleVersion =
[
['Cut','Copy','Paste','PasteText'],
];
次に、メインページで:
editor = CKEDITOR.replace("mydiv", { toolbar : 'SimpleVersion' });
editor.config.height = 50;
editor.config.removePlugins = 'resize';
editor.config.resize_enabled = false;
それは機能しますが、可能であれば、「本文」が書かれている下部を削除し、戻るボタンが押されるたびに改行を禁止する必要があります。
最後のものについては、JQuery トリガーを使用できる可能性があると思います。