Home / CSE / Javascript - CS :: Discussion

Discussion :: Javascript - CS

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

  2. A.

     With a specified id attribute

    B.

     Matching the specified CSS selector

    C.

     With the specified tag name

    D.

     All of the mentioned

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    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


Be The First To Comment