• Jodit
  • PRO
  • Builder
  • Getting Started
  • Playground
  • Examples
  • Documentation
  • Download
  • Overview
  • Issue tracker
  • Docs
  • Plugins
  • Demo
  • Pricing
  • File Browser Pro
  • Sign in
Get connected wth us on social networks!

Footer

Jodit Core

  • Jodit Home page
  • Documentation
  • Playground
  • Examples
  • Github
  • Issues

Integration

  • Jodit React
  • Jodit Angular
  • Jodit Vue
  • Jodit Yii2
  • Jodit Joomla

PRO/OEM plugins

  • AutoComplete
  • Backup Plugin
  • Button Generator
  • Change case
  • Custom Color Picker
  • Emoji
  • Finder
  • Google Search
  • Paste code
  • Show Blocks
  • Virtual Keyboard
  • Tune block
  • Highlight signature
  • Google Maps Editor
  • Export in PDF
  • Page Break
  • Iframe Editor
  • Paste from Word PRO
  • Mobile View
  • ToDo List
  • Translate

Links

  • Demo PRO/OEM
  • Demo FileBrowser PRO
  • Price
  • License
  • Support
  • For resellers

Versions

  • site v.0.1.810
  • Jodit PRO v.4.6.4
  • Jodit v.4.6.2
  • All versions
2025 © Copyright: XDSoft.net <support@xdsoft.net>
  • Getting started

    • Installation
    • Usage
    • Support
    • FAQs
    • Cloud
    • Examples
  • How to

    • Create plugin
    • Add custom button
    • Add custom font in the font list
    • How to create module
    • How to generate license key
    • How to make a backend finder
    • How to set up document view
  • Modes

    • Source mode
  • Customisation

    • Theme
    • Keyboard
  • API

    • License Rest API
    • JS API
  • Changelog

  • Plugins

    • AutoComplete
    • Backup Plugin
    • Button Generator
    • Change case
    • Custom Color Picker
    • Emoji
    • Finder
    • Google Search
    • Paste code
    • Show Blocks
    • Virtual Keyboard
    • Tune block
    • Highlight signature
    • Google Maps Editor
    • Export in PDF
    • Page Break
    • Iframe Editor
    • Paste from Word PRO
    • Mobile View
    • ToDo List
    • Translate

Frequently Asked Questions

Encountering a specific issue? Before anything else, take a look at our FAQ to see if your problem is a common one.

If you can't find what you're looking for, feel free to refer to our issue tracker.

Can I use the Jodit PRO version on site subdomains?

No. If you need to utilize the paid version of Jodit across multiple sites/domains/subdomains, you'll require the OEM version.

Can I use Multi PRO on multiple sites?

Yes, you can. However, unlike the OEM license, you'll need to generate a distinct license for each site, including those on subdomains.

How do I use Jodit in React?

We have a dedicated package for this: React Jodit PRO

Why does Jodit redraw every time?

Jodit for React reinitializes whenever it receives new options. If you're creating a new options object for each render, like this:

export const editor = () => { return ( <JoditEditor config={{ license: '%LICENSE_KEY%' }} /> ); };
Copy

This will cause Jodit to reinitialize on every render. To avoid this, simply move the settings into a separate object.

import JoditEditor from 'jodit-pro-react'; const defaultConfig = { license: '%LICENSE_KEY%' }; export const editor = () => { return <JoditEditor config={defaultConfig} />; };
Copy

Can I automatically create licenses for the OEM version?

Yes. We provide a special API for this purpose.

Can I use the free version in a commercial project?

Absolutely. The free version is distributed under the MIT license, and if this suits your needs, you're welcome to use it in your project.