Examples

Resizing Customization

Additionally, resizing is allowed in both directions by draging the corner handle.

ResizeBoth ResizeHeight Disabled

Hello world!

Demo Code:

<link rel="stylesheet" href="/richtexteditor/rte_theme_default.css" />
<script type="text/javascript" src="/richtexteditor/rte.js"></script>
<script type="text/javascript" src='/richtexteditor/plugins/all_plugins.js'></script>

<div id="div_editor1" style="height:430px">
	<p>Hello world!</p>
	<p><img src='/images/editor-image.png' /></p>
</div>
<script>
var editor1 = new RichTextEditor("#div_editor1", { editorResizeMode: "height" });
</script>