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 809879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T00:47:53+00:00 2026-05-15T00:47:53+00:00

I want to retrieve all the nodes present in particular DIV element.see the below

  • 0

I want to retrieve all the nodes present in particular DIV element.see the below test page
(firefox)

 <HTML>
 <HEAD>
  <TITLE> New Document </TITLE>
  <META NAME="Generator" CONTENT="EditPlus">
  <META NAME="Author" CONTENT="">
  <META NAME="Keywords" CONTENT="">
  <META NAME="Description" CONTENT="">
 <script>
 function processTags()
 {
    var chNodes = document.getElementById('foo').childNodes ;
console.log(chNodes);   
console.log("------");  

  var chNodes = document.getElementById('foo').getElementsByTagName('*') ;
 console.log(chNodes); 
}
</script>
 </HEAD>

 <BODY onload="processTags();">
  <div id="foo">
  <!-- this is a comment -->this is some text ? <span>this is inside span</span>
  <div><p>test</p>test<div>
  </div>
 </BODY>
</HTML>

But it does not give me comments tag.. what is the best way to retrieve all tags ??

  • 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-15T00:47:54+00:00Added an answer on May 15, 2026 at 12:47 am

    The heart of the problem is that these methods…

    document.getElementById(...)
    document.getElementsByTagName(...)
    

    … return elements, as indicated by their names. However, comments and text nodes are not elements. They are nodes, but not elements.

    So you need to do some traditional old fashioned DOM scripting, using childNodes like Vincent Robert suggested. Since – as you indicate in your comment to him – that .childNodes only goes one ‘layer’ deep, you need to define a recursive function to find the comment nodes: (I’m naming mine document.getCommentNodes())

    document.getCommentNodes = function() {
        function traverseDom(curr_element) { // this is the recursive function
            var comments = new Array();
            // base case: node is a comment node
            if (curr_element.nodeName == "#comment" || curr_element.nodeType == 8) {
                // You need this OR because some browsers won't support either nodType or nodeName... I think...
                comments[comments.length] = curr_element;
            }
            // recursive case: node is not a comment node
            else if(curr_element.childNodes.length>0) {
                for (var i = 0; i<curr_element.childNodes.length; i++) {
                    // adventures with recursion!
                    comments = comments.concat(traverseDom(curr_element.childNodes[i]));
                }
            }
            return comments;
        }
       return traverseDom(document.getElementsByTagName("html")[0]);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to retrieve all the RULE nodes that have one or more attributes
I have the ID of an element. I want to retrieve all child elements
I want to retrieve all ids within a certain timespan. The timestamps however, are
I want to retrieve all clientID from my MCC account. I'm using this code
I want to retrieve all records from one table when there are no matches
I want to retrieve all objects (not DOM elements) of a given type created
I want to retrieve all documents from folder to it's subfolder and so on
I retrieve a list of ObjectId and I want to retrieve all object in
I want to achieve something relatively simple: I want to retrieve all objects from
I'm working on a GAE app. I want to query datastore and retrieve all

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.