querySelector
The method querySelector() returns the first Element within the element that matches the specified selector, or group of selectors. If no matches are found, null is returned.
Querys
Symbol
Query
#
id
.
class
<blank>
tag
Example
elem.querySelector("#id") // Returns the FIRST element with the ID of idelem.querySelector(".id") // Returns the FIRST element with the className of idelem.querySelector("label") // Returns the FIRST element that is a LABELLast updated
Was this helpful?