querySelectorAll method - DocumentFragment class - dart:html library (original) (raw)

querySelectorAll<T extends Element> method

ElementList<T> querySelectorAll<T extends Element>(

  1. String selectors )

Finds all descendant elements of this document fragment that match the specified group of selectors.

selectors should be a string using CSS selector syntax.

var items = document.querySelectorAll('.itemClassName');

For details about CSS selector syntax, see theCSS selector specification.

Implementation

ElementList<T> querySelectorAll<T extends Element>(String selectors) =>
    new _FrozenElementList<T>._wrap(_querySelectorAll(selectors));