Vidyalelo
JavaScript · Q47

Document Object Model And Event Handling

Programming · JavaScript · question 47

Q47

Which is one of way to query a document for an element or elements?

A.
With a specified id attribute
B.
Matching the specified CSS selector
C.
With the specified tag name
D.
All of the mentioned
Answer

Answer: Option D

Solution

Answer: Option D
Solution:
he DOM defines a number of ways to select elements; you can query a document for an element or elements:
1. with a specified id attribute;
2. with a specified name attribute;
3. with the specified tag name;
4. with the specified CSS class or classes; or
5. matching the specified CSS selector