This article needs a technical review. How you can help.

SummaryEdit

Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors. The object returned is a NodeList.

SyntaxEdit

elementList = document.querySelectorAll(selectors);

where

The returned NodeList will contain all the elements in the document that are matched by any of the specified selectors. If the selectors string contains a CSS pseudo-element, the returned elementList will be empty.

ExampleEdit

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

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

NotesEdit

Returns a non-live NodeList of all the matching element nodes.

Throws a SYNTAX_ERR exception if the specified group of selectors is invalid.

querySelectorAll() was introduced in the WebApps API.

The string argument passed to querySelectorAll must follow the CSS syntax. See document.querySelector for concrete examples.

SpecificationsEdit

Specification Status Comment
Selectors API Level 2
The definition of 'document.querySelector()' in that specification.
Working Draft  
Selectors API Level 1
The definition of 'document.querySelector()' in that specification.
Recommendation Initial definition

Browser compatibilityEdit

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 1 3.5 9
8[1]
10 3.2

[1] Internet Explorer 8 only supported CSS2 selectors.

See alsoEdit

Document Tags and Contributors

 Last updated by: Red15,