querySelectorAll
Symbol
Query
elem.querySelectorAll("#id") // Returns ALL element with the ID of idelem.querySelectorAll(".id") // Returns ALL element with the className of idelem.querySelectorAll("label") // Returns ALL element that are a LABELLast updated