Which is the correct jQuery selector to select the first list item of <ul> element?
Options:
Explanation:
The
$("ul li:first") selector is used to select the first list item of
element.
Tags:
jQuery
Answer:
Which is the correct jQuery selector to select the first list item of <ul> element $("ul li:first").