Home >>jQuery Tutorial >jQuery Parent Descendant Selector

jQuery Parent Descendant Selector

jQuery Parent Descendant Selector

jQuery parent descendant selector in jQuery is used to selects all elements that are descendants of a specified element.

Syntax:
("parent descendant")

Parameter Values

Parameter Description
parent It is a Required parameter and used to specifies the parent element to be selected
descendant It is a Required parameter and used to specifies the descendant element of the specified parent element to be selected
Here is an Example of jQuery parent descendant Selector:

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("div span").css("background-color", "orange");
});
</script>
</head>
<body>  
<h2>Hello phptpoint !</h2>
<h4>This div element has two descendants, p and span:</h4>
<div style="border:1px solid black;padding:10px;">
<p>This is a paragraph.</p>
<span>This is a text inside a span.</span>
</div>
<h4>This div element has also two descendants, p and span:</h4>
<div style="border:1px solid black;padding:10px;">
<p>This is a paragraph. <span>This is a span element, inside the paragraph.</span></p>
</div>
</body>
</html>

Output:

Hello phptpoint !

This div element has two descendants, p and span:

This is a paragraph.

This is a text inside a span.

This div element has also two descendants, p and span:

This is a paragraph. This is a span element, inside the paragraph.


No Sidebar ads