Which is the correct jQuery selector to select the first list item of <ul> element?

22. Which is the correct jQuery selector to select the first list item of <ul> element?

  1. $("ul li:first")
  2. $("ul:first")
  3. $("li:first")
  4. $("ul.li:first")

Answer: A) $("ul li:first")

Explanation:

The $("ul li:first") selector is used to select the first list item of <ul> element.

Comments and Discussions!

Load comments ↻






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