Which is the correct jQuery selector to select the first <div> of the HTML document?
Options:
Explanation:
The
$("div:first") selector is used to select the first
of the HTML document.
Tags:
jQuery
Answer:
Which is the correct jQuery selector to select the first <div> of the HTML document $("div:first").