how to make a content editor or cms editor using Ckeditor api

Share:

how to make a content editor or cms editor using Ckeditor API

 


CKEditor 4

copy and paste the code you will get same result

To start using CKEditor 4 on your website, add a single <script> tag to your HTML page:

<script src="https://cdn.ckeditor.com/4.19.0/standard/ckeditor.js"></script>

Quick example:

<!DOCTYPE html>
<html>
        <head>
                <meta charset="utf-8">
                <title>CKEditor</title>
                <script src="https://cdn.ckeditor.com/4.19.0/standard/ckeditor.js"></script>
        </head>
        <body>
                <textarea name="editor1"></textarea>
                <script>
                        CKEDITOR.replace( 'editor1' );
                </script>
        </body>
</html>

Post a Comment

No comments