ckeditor blur and dialog
Posted
by mmcgrail
on Stack Overflow
See other posts from Stack Overflow
or by mmcgrail
Published on 2010-04-08T15:19:08Z
Indexed on
2010/04/08
15:23 UTC
Read the original article
Hit count: 577
I have a blur function attached to my ckeditor like so
editor = CKEDITOR.instances.fck;
editor.on("blur",function(e){
alert("hello");
});
you with me ?
now when I click on the flash button the editor blurs and causes the alert to show.
how to I stop that from happening and still get the alert to appear other times like when the user leave the editor area
thanks again
© Stack Overflow or respective owner