List<Node> getElementsByClassName(
String classNames
)

Returns a list of nodes with the given class name inside this element.

Other resources

Source

/**
 * Returns a list of nodes with the given class name inside this element.
 *
 * ## Other resources
 *
 * * [getElementsByClassName]
 * (https://developer.mozilla.org/en-US/docs/Web/API/document.getElementsByClassName)
 * from MDN.
 * * [DOM specification]
 * (http://www.w3.org/TR/domcore/) from W3C.
 */
@DomName('Element.getElementsByClassName')
@DocsEditable()
List<Node> getElementsByClassName(String classNames) => wrap_jso_list(_blink.BlinkElement.instance.getElementsByClassName_Callback_1_(unwrap_jso(this), classNames));