Get started with jquery.dirtyforms.helpers.ckeditor CDN
MIT licensed
Plugin integrates CKEditor with jQuery Validation and DirtyForms for form field validation in textareas.
Tags:- ckeditor
- dirty
- forms
- HTML
- form
- confirm
- dialog
- confirmation
- are
- you
- sure
Stable version
Copied!
How to start using jquery.dirtyforms.helpers.ckeditor CDN
<head>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.ckeditor.com/4.16.1/standard/ckeditor.js"></script>
<script src="https://cdn.cdnhub.io/jquery.dirtyforms.helpers.ckeditor/2.0.0/jquery.dirtyforms.helpers.ckeditor.min.js"></script>
<script>
ClassicEditor
.create( document.querySelector( '#editor' ) )
.then( editor => {
window.editor = editor;
} )
.catch( error => {
console.error( error.stack );
} );
</script>
</head>
Copied!
Copied!
Copied!