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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:40:55+00:00 2026-05-30T02:40:55+00:00

Hopefully I can explain it well enough. I do var foo = document.getElementsByTagName(‘bar’); var

  • 0

Hopefully I can explain it well enough. I do

var foo = document.getElementsByTagName('bar');
var len = foo.length;
for(var i=0;i<len;i++){
//Do stuff
}

Inside that for I also want to be able to get an element (specifically a class) that is buried deep within foo[i]. My thought is something like

var whatIWant = document.getElementsByClassName("name").foo[i];

but that doesn’t seem to be what I need to do. Am I just not sure on the syntax or do I need to do something completely different?

  • 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-30T02:40:57+00:00Added an answer on May 30, 2026 at 2:40 am

    You’ve almost got it:

    foo = document.getElementsByTagName('bar');
    // foo is now a nodelist of all nodes named 'bar'.
    
    for (i = 0; i < foo.length; i++) {
       bar = foo[i].getElementsByClassName('baz');
       // bar is now a nodelist of all elements with class 'baz' in the dom tree under foo[i].
    
    }
    

    If you were using jquery, it’d be as simple as:

    $('bar .baz').each(function() {
       $(this). etc...;
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry for the unhelpful title, but hopefully I can explain this well enough. Lets
Hopefully I can explain this well enough, but please let me know if more
This is hard to explain but hopefully I can articulate my problem well enough.
Hopefully I can explain this clearly enough. I have a table that displays some
Hopefully I can explain this well and hopefully I'm thinking the right way :)
Hopefully I can explain my issue clearly enough for others to understand, here we
Hopefully I can explain this well. Assume the following: @interface ClassA : NSObject {
I'm new to WPF and data binding so hopefully I can explain the problem
Hopefully I can explain this to where it make sense, but I'm trying to
Let me explain my problem, and hopefully someone can offer some good advice. I

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.