Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Vic Mercier
Vic Mercier
3,276 Points

What is the difference between a descendant and a child.

I am mixed up in the jQuery introduction

1 Answer

Ezra Siton
Ezra Siton
12,644 Points

Look at the DOM like a family tree (what the difference in family between child and descendant?)

Code example:

<section>
  <div class="child-of-section    descendant-of-section">
      <p class="descendant-of-section">
      </p>
      <p class="i-am-also-descendant-of-section">
     </p>
   </div> 
   <p id="i-am-also-a-child-of-section   descendant-of-section">
    </p>
</section>

Related links:

W3C Definitions:

Related video/course at treehouse: