ckeditor, how to use ckeditor, download ckeditor, install ckeditor, ckeditor 4, ckeditor 5
xxxxxxxxxx
// Add the CDN to the `head` tag
<head>
<script src="https://cdn.ckeditor.com/ckeditor5/36.0.1/classic/ckeditor.js"></script>
</head>
// Add your `textarea` tag with an id
<input type="textarea" id="editor">
// Add the script to enable the editor
<script>
ClassicEditor
.create( document.querySelector( '#editor' ) )
.catch( error => {
console.error( error );
} );
</script>
// Make sure the `id` in your `input` tag matches the one you use in your script
ckeditor, how to use ckeditor, download ckeditor, install ckeditor, ckeditor 4, ckeditor 5
This is the newest version ckeditor5!
xxxxxxxxxx
<head>
<meta charset="utf-8">
<title>CKEditor 5 – Classic editor</title>
<script src="https://cdn.ckeditor.com/ckeditor5/36.0.1/classic/ckeditor.js"></script>
</head>
<body>
<h1>Classic editor</h1>
<div id="editor">
<p>This is some sample content.</p>
</div>
<script>
ClassicEditor
.create( document.querySelector( '#editor' ) )
.catch( error => {
console.error( error );
} );
</script>
</body>
xxxxxxxxxx
<script src="https://cdn.ckeditor.com/ckeditor5/39.0.2/classic/ckeditor.js"></script>