I am not able to have my own client side event handlers for the textarea element which is configured for ckeditor. For example, I have this simple line of code in Page_Load event:
editor1.Attributes.Add("onclick", "alert('hi')");
and I dont get the alert when I click on the textarea.
So, how do I attach client side events?
Shyam
editor1.Attributes.Add("onclick", "alert('hi')");
and I dont get the alert when I click on the textarea.
So, how do I attach client side events?
Shyam
Re: client side events?
I don't know about other browsers, but at least in FF, the events on objects inside CKEditor are disabled. In order to get around this, you have to attach events using CKEditor's event system.
http://docs.cksource.com/FCKeditor_3.x/ ... ent_Driven