CKEDITOR.config.jqueryOverrideVal = true;
jQuery('textarea').ckeditor();jQuery('textarea').val('some text for the editor');http://nightly.ckeditor.com/6925/_samples/replacebyclass.html
CKEDITOR.config.jqueryOverrideVal = true;
jQuery.getScript('http://somesite.com/editor/adapters/jquery.js');jQuery('#editor1').val('Some test text')
Re: Issues with jQuery plugin
Try these commands
CKEDITOR.instances.editor1.destroy(); jQuery('#editor1').ckeditor(); jQuery('#editor1').val('Some test text')Re: Issues with jQuery plugin
jquery + ckeditor.. awesome combo.. thanks much