getElementsByClassName method
- @Creates('NodeList|HtmlCollection')
- @Returns('NodeList|HtmlCollection')
- String classNames
@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.
Implementation
@Creates('NodeList|HtmlCollection') @Returns('NodeList|HtmlCollection') List<Node> getElementsByClassName(String classNames) native;
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-html/Element/getElementsByClassName.html