jQuery parent descendant Selector Last Updated : 11 Jul, 2025 Suggest changes Share 1 Likes Like Report jQuery parent descendant Selector selects every element which is a descendant to a specific(parent) element. Syntax: $("parent descendant")Example 1: In this example, we are using parent descendant selector. html <!DOCTYPE html> <html> <head> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function () { $("div span").css("color", "lightgreen"); }); </script> </head> <body> <h4>This div element has descendant span:</h4> <div> <span>DESCENDANT ELEMENT</span> </div> </body> </html> Output: Example 2: Here is another example, of parent descendant selector. HTML <!DOCTYPE html> <html> <head> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function () { $("button").click(function () { $("div span").css("color", "lightgreen"); }); }); </script> </head> <body> <h4>This div element has descendant span:</h4> <div> <span>DESCENDANT ELEMENT</span> </div> <br> <button>Change color</button> </body> </html> Output: A AkshayGulati Follow 1 Article Tags : Web Technologies JQuery jQuery-Selectors Explore jQuery Tutorial 7 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like