Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery parent > child Selector

❮ jQuery Selectors

Example

Select all <span> elements that are a direct child of a <div> element:

$("div > span")
Try it Yourself »

Definition and Usage

The ("parent > child") selector selects all elements that are a direct child of the specified element.


Syntax

("parent > child")

Parameter Description
parent Required. Specifies the parent element to be selected
child Required. Specifies the direct child element (of the specified parent element) to be selected

Try it Yourself - Example

Select all <li> elements that are a direct child of an <ul> element
How to select all <li> elements that are a direct child of an <ul> element with a classname.


❮ jQuery Selectors