Web/API/DocumentFragment/querySelectorAll

From Get docs


The DocumentFragment.querySelectorAll() method returns a NodeList of elements within the DocumentFragment (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.

If the selectors specified in parameter are invalid a DOMException with a SYNTAX_ERR value is raised.

Note: The definition of this API was moved to the ParentNode interface.


Syntax

elementList = documentfragment.querySelectorAll(selectors);

Parameters

selectors
Is a DOMString containing one or more CSS selectors separated by commas.

Examples

This example returns a list of all div elements within the DocumentFragment with a class of either "note" or "alert":

var matches = documentfrag.querySelectorAll("div.note, div.alert");

Specifications

Specification Status Comment
Selectors API Level 1The definition of 'DocumentFragment.querySelectorAll' in that specification. Obsolete Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
querySelectorAll Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 3.5

IE

Full support 9

Opera

Full support 10

Safari

Full support 3.2

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 3.2

Samsung Internet Android

Full support Yes

Legend

Full support  
Full support


See also