I\'m experimenting with various WYSIWYG javascript text areas. If I try to put a CKEditor on every on my screen with jquery, the editors all s
Actually, jQuery Adapter for CKEditor, does not update the form element by default, you need to replace the editor with the current id.
$(function() { $('.editors').each(function(){ CKEDITOR.replace( $(this).attr('id') ); }); });
Reference