I am trying to set an onblur even for my editor instanse:
var editor_ins;
editor_ins=CKEDITOR.replace(contentDIV....
I couldnt use the :
editor_ins.event.implementOn("myobj");
myobj.on( 'onblur', function()
{
alert("test OK" ); // "Example"
});
and it alert a JS error : editor_ins.event is undefind...
any help ...
Thanks
Moshe
var editor_ins;
editor_ins=CKEDITOR.replace(contentDIV....
I couldnt use the :
editor_ins.event.implementOn("myobj");
myobj.on( 'onblur', function()
{
alert("test OK" ); // "Example"
});
and it alert a JS error : editor_ins.event is undefind...
any help ...
Thanks
Moshe
Re: setting onblur event