Using the jQuery Validate Plugin with CKEditor
Join the DZone community and get the full member experience.
Join For FreeJust a quick post (mostly for my own reference!) on using the jQuery validate plugin to check that a CKEditor instance has content. The problem occurs when CKEditor replaces the HTML textarea tag with a WYSIWYG editor and the jQuery validate plugin validates against the textarea and not the content of the WYSIWYG editor.
The solution is quite simple. Just use the updateElement() method of the CKEditor instance to populate the hidden textarea before you do the validation.
Here's some code to demonstrate:
<form id="cms-form"> Title (required):<br> <input type="text" name="title" id="title" placeholder="Title"><br> <!-- this textarea will be replaced by a CKEditor instance --> Content (required):<br> <textarea name="content" id="content" placeholder="Content" class="ckeditor"></textarea> </form> <script> jQuery(function($){ $("#cms-form").validate({ event: 'blur', rules: { title: {required: true}, content: {required: true} } }); }); </script>
All you need to do is to replace the line:
content: {required: true}
With a callback so you get something like this:
jQuery(function($){ $("#cms-form").validate({ event: 'blur', rules: { title: {required: true}, content: { required: function(textarea) { CKEDITOR.instances[textarea.id].updateElement(); // update textarea var editorcontent = textarea.value.replace(/<[^>]*>/gi, ''); // strip tags return editorcontent.length === 0; } } } }); });
Published at DZone with permission of John Whish, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
File Upload Security and Malware Protection
-
Building a Robust Data Engineering Pipeline in the Streaming Media Industry: An Insider’s Perspective
-
Mastering Go-Templates in Ansible With Jinja2
-
Performance Comparison — Thread Pool vs. Virtual Threads (Project Loom) In Spring Boot Applications
Comments