Skip to content
This repository has been archived by the owner on Oct 21, 2019. It is now read-only.

Latest commit

 

History

History
21 lines (12 loc) · 837 Bytes

tinymce-editor.md

File metadata and controls

21 lines (12 loc) · 837 Bytes

TinyMCE Editor

Covers the class of editor APIs identified by Editor:

  • tinymce.activeEditor.insertContent()
  • tinymce.activeEditor.setContent()
  • etc.

Overview

TinyMCE's Editor object provides access to manipulating the TinyMCE editor instance. It can be accessed globally (tinymce.activeEditor) and by ID (tinymce.get('content')).

Some commonly-used methods of the object include insertContent() and setContent(). These methods are often driven by use of a TinyMCE Toolbar Button.

Existing Usage

Please open a new issue to suggest additional examples of existing usage.

Gutenberg Equivalent

There are no Gutenberg equivalents for this API.