- @DomName('Element.getElementsByClassName')
- @DocsEditable()
- @Creates('NodeList|HtmlCollection')
- @Returns('NodeList|HtmlCollection')
Returns a list of nodes with the given class name inside this element.
Other resources
- getElementsByClassName from MDN.
- DOM specification from W3C.
Source
@DomName('Element.getElementsByClassName') @DocsEditable() @Creates('NodeList|HtmlCollection') @Returns('NodeList|HtmlCollection') List<Node> getElementsByClassName(String classNames) native;