Which is the correct jQuery selector to select the first <div> of the HTML document?

21. Which is the correct jQuery selector to select the first <div> of the HTML document?

  1. $("div.first")
  2. $("div#first")
  3. $("div::first")
  4. $("div:first")

Answer: D) $("div:first")

Explanation:

The $("div:first") selector is used to select the first <div> of the HTML document.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.