querySelectorAll method

NodeList querySelectorAll(
  1. String selectors
)

The Element method querySelectorAll() returns a static (not live) NodeList representing a list of elements matching the specified group of selectors which are descendants of the element on which the method was called.

Implementation

external NodeList querySelectorAll(String selectors);