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