• Jodit
  • PRO
  • Builder
  • Getting Started
  • Playground
  • Examples
  • Documentation
  • Download
  • Jodit
  • Examples
  • © 2025 XDSoft.net
  • site v.0.1.810
  • Jodit v.4.6.2
Modules
Filebrowser module without Jodit
Custom module

Sizes
Autosize
Fixed height

Integrations
Joomla Component Jodit WYSIWYG
Angular Component Jodit WYSIWYG
React JS Jodit WYSIWYG
Integration with ElFinder
Jodit in Yii2
Integrate filebrowser in Joomla CMS

Theme
Drak or custom theme

Edit modes
Source mode
Read only
Read only

Plugins
Create custom plugin

Customization
Keyboard shortcuts

Toolbar
Small Icons
Large Icons
Text Icons
Custom icons / Use Font awesome
Custom button

Fixed height

You can set Jodit height in pixels or percents. It automatically will add resize handle.

clip2net_170830115445

Include Jodit

<link rel="stylesheet" href="build/jodit.min.css" /> <script src="build/jodit.min.js"></script>
Copy

Create input element

<textarea id="editor"></textarea>
Copy

Create Jodit instance

var editor = new Jodit('#editor', { height: 200 }); editor.setEditorValue('<p>test</p>'.repeat(50));
Copy

Result

If you want to disable horizontal or vertical resizing use allowResizeX or allowResizeY options

Remove the size change trigger

const editor = Jodit.make('#editor', { height: 200, allowResizeX: false, allowResizeY: false }); editor.value = '<p>test</p>'.repeat(50);
Copy

Result

;