Jquery events on CKeditor

Posted by Sandro Antonucci on Stack Overflow See other posts from Stack Overflow or by Sandro Antonucci
Published on 2010-12-04T17:21:51Z Indexed on 2011/01/07 22:54 UTC
Read the original article Hit count: 248

Filed under:
|
|
|

Hello in a form with a textarea with id "ckeditor_input"

$("#ckeditor_input").ckeditor();

$("#ckeditor_input").html(); // can get the value

("#ckeditor_input").click/blur/keydown/keypressed(

   function(){
         alert("OK");
  }
); //doesn't work!

the problem is ckeditor! If I don't start an instance of ckeditor on the textarea all events work fine! What is the right way to get events on a ckeditor instance?

Thank you

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about events