Logo iconXDSoft.net
  • Jodit
  • Examples
  • Playground
  • Builder
  • Jodit PRO
  • Github
Jodit Editor
  • Overview
  • Getting Started
  • Button System
  • Jodit Awesome
  • Options
  • Contributing guide
  • Plugin System
  • Modules
    • Async
    • Component system
    • Constants
    • Context menu
    • Create DOM
    • Decorators
    • Dialog system
    • DOM operation
    • Event Emitter
    • Filebrowser
    • Global
    • Helpers
    • History
    • Icon system
    • Image editor
    • Jodit constructor
    • Langs
    • Show info messages
    • Plugins
    • Request
    • Selection
    • Status bar
    • Persistent storage
    • Table processor
    • Toolbar
    • Traits
    • Types
    • UI System
      • Button UI Element
      • Form UI Element
      • Group component
      • Popup
      • Progress Bar UI element
    • File uploader module
    • View UI component
    • Jodit widgets
  • Classes
  • Interfaces

Popup

The module is used to create pop-up windows next to interface elements.

const { Popup } = Jodit.modules;

const popup = new Popup(jodit);
popup.setContent('Hello world').open(() => ({
  left: 100,
  top: 200
}));

popup.close();

ClassesClasses

  • Popup
Previous
Group component
Next
Progress Bar UI element