If possible, how can we change the ckeditor event? For example, where the page is open, text has already been added to the ckeditor aka textarea content. Subsequently, I print something else or delete part of this text. Is there some kind of event that quit, can I change the variable when the text changes?
I have this for regular text areas:
$("input,textarea").on("input", function () { booleanvar= true; });
Saw a possible solution somewhere who had this:
$('.ckeditor').ckeditorGet().on('key', function (e) {
I tried, but did not work. And yes, I know that my ckeditor textarea has "ckeditor" as its class, so there is no reason for this not to work.
So, is there something like these examples that I can use to jump to some cceditor event with modified text?
source share