Logo
Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / Tools / Compass Created with Sketch.
TinyMCE is your best choice for building modern, internationalized and accessible content creation experiences.
For more info please visit the plugin's Demo Page or Github Repo.

Basic Demo


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            Basic Demo
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <textarea id="kt-tinymce-1" name="kt-tinymce-1" class="tox-target">
                                            <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                            <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. Lorem Ipsum is simply dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                            <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</blockquote>
                                            <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                            <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                            <ul>
                                                <li>List item 1</li>
                                                <li>List item 2</li>
                                                <li>List item 3</li>
                                                <li>List item 4</li>
                                            </ul>
                                        </textarea>
                                    </div>
                                </div>
    			        	

                            // Class definition

                            var KTTinymce = function () {
                                // Private functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-1',
                                        toolbar: false,
                                        statusbar: false
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    			        	

TinyMCE with Toolbar


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            TinyMCE with Toolbar
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <textarea id="kt-tinymce-2" name="kt-tinymce-2" class="tox-target">
                                            <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                            <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. Lorem Ipsum is simply dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                            <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</blockquote>
                                            <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                            <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                            <ul>
                                                <li>List item 1</li>
                                                <li>List item 2</li>
                                                <li>List item 3</li>
                                                <li>List item 4</li>
                                            </ul>
                                        </textarea>
                                    </div>
                                </div>
    			        	

                            // Class definition

                            var KTTinymce = function () {
                                // Private functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-2'
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    				        

TinyMCE with Plugins


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            TinyMCE with Plugins
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <div class="tinymce">
                                            <textarea id="kt-tinymce-3" name="kt-tinymce-3" class="tox-target">
                                                <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                                <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. Lorem Ipsum is simply dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                                <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</blockquote>
                                                <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                                <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                                <ul>
                                                    <li>List item 1</li>
                                                    <li>List item 2</li>
                                                    <li>List item 3</li>
                                                    <li>List item 4</li>
                                                </ul>
                                            </textarea>
                                        </div>
                                    </div>
                                </div>
    			        	

                            // Class definition

                            var KTTinymce = function () {
                                // Private functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-3',
                                        toolbar: 'advlist | autolink | link image | lists charmap | print preview',
                                        plugins : 'advlist autolink link image lists charmap print preview'
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    			        	

TinyMCE with Hidden Menubar


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            TinyMCE with Hidden Menubar
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <div class="tinymce">
                                            <textarea id="kt-tinymce-4" name="kt-tinymce-4" class="tox-target">
                                                <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                                <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. Lorem Ipsum is simply dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                                <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</blockquote>
                                                <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                                <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                                <ul>
                                                    <li>List item 1</li>
                                                    <li>List item 2</li>
                                                    <li>List item 3</li>
                                                    <li>List item 4</li>
                                                </ul>
                                            </textarea>
                                        </div>
                                    </div>
                                </div>
    			        	

                            // Class definition

                            var KTTinymce = function () {
                                // Private functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-4',
                                        menubar: false,
                                        toolbar: ['styleselect fontselect fontsizeselect',
                                            'undo redo | cut copy paste | bold italic | link image | alignleft aligncenter alignright alignjustify',
                                            'bullist numlist | outdent indent | blockquote subscript superscript | advlist | autolink | lists charmap | print preview |  code'],
                                        plugins : 'advlist autolink link image lists charmap print preview code'
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    				        

Notifications 24 New

Quick Actions finance & reports

User Profile 15 messages

Recent Notifications
Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / Files / File-done Created with Sketch.

Important Notice

Lorem Ipsum is simply dummy text of the printing and industry.

Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / Design / Pen&ruller Created with Sketch.

System Update

There are many variations of passages of Lorem Ipsum available.

Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / General / Thunder-move Created with Sketch.

Server Maintenance

Contrary to popular belief, Lorem Ipsum is not simply random text.

Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / Home / Alarm-clock Created with Sketch.

DB Migration

If you are going to use a passage of Lorem Ipsum, you need.

System Messages
Stockholm-icons / Communication / Group-chat Created with Sketch.
09:30 AM

To start a blog, think of a topic about and first brainstorm ways to write details

Stockholm-icons / General / Attachment2 Created with Sketch.
2:45 PM

To start a blog, think of a topic about and first brainstorm ways to write details

Stockholm-icons / Home / Library Created with Sketch.
3:12 PM

To start a blog, think of a topic about and first brainstorm ways to write details

Stockholm-icons / Communication / Add-user Created with Sketch.
7:05 PM

To start a blog, think of a topic about and first brainstorm ways to write details

Privacy Settings:

After you log in, you will be asked for additional information to confirm your identity.

Security Settings:

After you log in, you will be asked for additional information to confirm your identity. For extra security, this requires you to confirm your email. Learn more.

Stockholm-icons / Navigation / Up-2 Created with Sketch.

Select A Demo

Demo 1
Demo 2
Demo 3
Demo 4
Demo 5
Demo 6
Demo 7
Demo 8
Demo 9