I’m currently working with ckeditor and i’m using the jquery plugin for this editor for instantiating everything when the document is ready. What I need to do is setup a blur event for the instance of ckeditor that is being created. The below code is what I’m using to instantiate ckeditor.
$(“textarea.editor”).ckeditor();
What I’m trying to do is something like:
$(“textarea.editor”).blur();
Is there a way to do this with ckeditor using the jquery plugin for it?
You need to bind your handler to the editor instance not to the textarea itself. This binds an on-blur-handler to your editor instance:
(Inspired by skunkwerk@cksource-forum.)