How to trigger the blur event on CKEditor textareas?
问题 We have some code for validating input on a CKEditor textarea that runs on blur. We add a class of ckeditor_textarea to all textareas that use CKEditor and run this code to attach the necessary functions to the blur event: $("textarea.ckeditor_textarea").each(function(){ var textarea_id = $(this).attr("id"); CKEDITOR.instances[textarea_id].on('blur',function(){ // Validation functions here }); }); This works to fire the validation functions when the blur event happens. But we also need to