ElementList

ElementList is an extension of NodeList that specifically handles a collection of nodes that are instances of ElementInterface. This class provides all the functionality of NodeList, but it is geared towards handling only elements, ensuring that the nodes contained within the collection are of the type ElementNode or similar elements. It is useful for operations where you need to work with a list of element nodes, such as searching, iterating, or performing DOM manipulations.

Declaration

class ElementList extends NodeList

inherited methods

Source Code
If you find this project useful, consider leaving a on GitHub! Thank you!