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