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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:57:32+00:00 2026-05-28T00:57:32+00:00

how can i use js to output the value of a childNode with an

  • 0

how can i use js to output the value of a childNode with an alert(); function or creating a new element. for example.. have this:

<ul id="main">
  <li>
   <h2>Alec</h2>
   <p>NX-01</p>
   <p>command: 2151</p>
  </li>
  <li>simple</li> 
  <li>William</li>
</ul>

<script>
var element = document.getElementById("main");
var values = element.childNodes[1].nodeValue; // the text simple this i want to output
alert('the value is:' + values);
</script>
  • 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-28T00:57:33+00:00Added an answer on May 28, 2026 at 12:57 am

    You can use its innerText property:

    var element = document.getElementById("main");
    var values = element.childNodes[1].innerText;
    alert('the value is:' + values);
    // Alec NX-01 command: 2151
    

    The above should print all the text contents of the first <li> element (Alec NX-01 command: 2151)

    To further refine it and retrieve the value Alec for example, use another .childNodes[1]

    var element = document.getElementById("main");
    var values = element.childNodes[1].childNodes[1].innerText;
    alert('the value is:' + values);
    
    // Alec
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I use output caching with a .ashx handler? In this case I'm
I have this jQuery .each function so I can traverse all the UL hmtl
In Bash I can use printf to format a string output like this:- (Note
This is probably a stupid question, can you have a function available to multiple
Just curious, is there a format string I can use to output something like
I've noticed that you can use python libdiff to output a side by side
UPDATE: I know I can use <ol> directky in the output but I remember
Can I use Html Agility Pack to make the output look nicely indented, unnecessary
How can I get output from Java anonymous classes? In .Net I would use
I can use this maven plugin maven-jaxb-plugin to generate Java Classes from XSD file.

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.