These seem to be incompatible, here's an example:
Is there any way to use PrototypeJS's DOM traversal functions with CKEditor.dom.element?
var editor = CKEDITOR.instances['mytextarea']; var bodyElement = editor.document.body.$; // Use the native dom element stored in $. $(bodyElement).select('span'); // This will error, saying select() is not a function. Element.select(bodyElement, 'span'); // This also does not work, but it's because prototype uses $(root) in its implementations, which again causes undefined function errors related to $(element).function().
Is there any way to use PrototypeJS's DOM traversal functions with CKEditor.dom.element?
Re: CKEditor.dom.element does not work with PrototypeJS $()
Re: CKEditor.dom.element does not work with PrototypeJS $()