Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7413363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:41:00+00:00 2026-05-29T06:41:00+00:00

With this HTML: <p id=child><span id=grandchild></span></p> And this JavaScript: var x = document.getElementById(child).childNodes; console.log(x.length);

  • 0

With this HTML:

<p id="child"><span id="grandchild"></span></p>

And this JavaScript:

var x = document.getElementById("child").childNodes;
console.log(x.length);

I get 1. With this HTML instead:

<p id="child"><span id="grandchild">hi</span></p>

I get 1 as well. I was expecting 2.

In the first HTML snippet, I expected 1 because of the span element. In the second snippet, I was expecting 2 because there’s not just the span element, but also the hi text node.

What am I misunderstanding?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T06:41:01+00:00Added an answer on May 29, 2026 at 6:41 am

    Child nodes refers only to the direct nodes under.

    <p id ="child"><span id="grandchild">hi</span></p> //1 child node
    
    Only 1 child node is counted because "hi" is not a child of p#child it is the child of <span>
    

    If you want to countall the descendants you have to do it recursively, please see below sample:

    function countChild(p)
    {
        var ctr = p.childNodes.length;
        for(var i=0;i<p.childNodes.length;i++)
        {     
           ctr += countChild(p.childNodes[i]);    
        }
        return ctr;    
    }
    var x = document.getElementById("child");
    alert(countChild(x));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given this HTML code: <div contenteditable> .... <span> child-element </span> .... </div> When the
Is there a shortcut for: var child = $('<span>error message</span>'); $('#parent').html(child.html()); or, the same
I am using this HTML <html> <head> <Title>EBAY Search</title> </head> <script language=JavaScript src=ajaxlib.js></script> <body>
Assuming the following selector $(div span:first-child) applied in following html code John, Karl, Brandon
I have some HTML like this: <a class=button> <span> <span> <span class=buttonspan>Content</span> </span> </span>
I have HTML which looks something like this: <span id=text> <span class=segment id=first>some text</span>
I want to know how to get access of this [span class=myclass] in below
If I have html like this: <li id=listItem> This is some text <span id=firstSpan>First
I have this menu : <html> <head> <script type=text/javascript src=http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js></script> <script> $(function() { $(#menu).find(li).each(function()
I've got html that looks something like this: <div id=sortThis> <div id=1>Price:<span class=price>20</span><span class=style>blue</span></div>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.