CKEditor 4 reached its End of Life (EOL) in June 2023. From then on, it will receive no more updates, new features, bug fixes, and security patches. Visit CKEditor 5 Docs for the actively supported CKEditor or check Extended Support Model.
CKEDITOR.dom.nodeList
class
Represents a list of CKEDITOR.dom.node objects. It is a wrapper for a native nodes list.
var nodeList = CKEDITOR.document.getBody().getChildren();
alert( nodeList.count() ); // number [0;N]
Filtering
Methods
-
constructor( nativeList ) → nodeList
CKEDITOR.dom.nodeList#constructor
-
count() → Number
CKEDITOR.dom.nodeList#count
-
getItem( index ) → node
CKEDITOR.dom.nodeList#getItem
-
toArray() → node[]
CKEDITOR.dom.nodeList#toArray