$$
From FirebugWiki
(Difference between revisions)
Sebastianz (Talk | contribs) m |
Sebastianz (Talk | contribs) (Added description of syntax and linked back to Command Line API) |
||
| Line 1: | Line 1: | ||
This command returns an array of HTML or XML elements that match the given CSS selector. This means it is actually a shortcut for <code>[https://developer.mozilla.org/en/DOM/Document.querySelectorAll document.querySelectorAll()]</code>. | This command returns an array of HTML or XML elements that match the given CSS selector. This means it is actually a shortcut for <code>[https://developer.mozilla.org/en/DOM/Document.querySelectorAll document.querySelectorAll()]</code>. | ||
| + | |||
| + | == Syntax == | ||
| + | <source lang="javascript"> | ||
| + | $$(selector) | ||
| + | </source> | ||
== Parameters == | == Parameters == | ||
| Line 6: | Line 11: | ||
== Examples == | == Examples == | ||
| - | |||
<source lang="javascript"> | <source lang="javascript"> | ||
$$(".someClass") | $$(".someClass") | ||
| Line 24: | Line 28: | ||
This returns all checkboxes. | This returns all checkboxes. | ||
| + | |||
| + | == See also == | ||
| + | [[Command Line API]] | ||
Revision as of 10:45, 5 July 2012
This command returns an array of HTML or XML elements that match the given CSS selector. This means it is actually a shortcut for document.querySelectorAll().
Contents |
Syntax
$$(selector)
Parameters
selector
Selector used to match the elements to return. This follows the syntax of document.querySelectorAll(). (required)
Examples
$$(".someClass")
This returns all elements having the class someClass assigned.
$$(".someClass > span")
This returns all <span>s being direct children of elements having the class someClass assigned.
$$("input[type=checkbox]")
This returns all checkboxes.