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