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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:21:22+00:00 2026-06-05T08:21:22+00:00

I know there is a way of accessing sequential elements, but I’m not sure

  • 0

I know there is a way of accessing sequential elements, but I’m not sure how to access them by index. Is there a way to do it?

I’m looking for something like:

document.getElementById('table1').cell[1]
  • 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-06-05T08:21:24+00:00Added an answer on June 5, 2026 at 8:21 am

    To access a cell by its row index and cell index within that row you can use:

    var rowIndex = 0;
    var cellIndex = 1;
    document.getElementById('table1').rows[rowIndex].cells[cellIndex];
    

    This will access the second cell (index 1) in your first row (index 0)

    If you want to just use cell index (and not keep track of rows) and have it iterate through the cells in each row, you can do this, but only if every row has the same number of cells. The following code would access the fourth cell in the table (index 3) whether it’s in row 0, 1, or 3; as long as each row has the same number of cells:

    var cellIndex = 3;
    var table = document.getElementById('table1');
    var num_columns = table.rows[0].cells.length;
    var cell = table.rows[Math.floor(cellIndex/num_columns)].cells[cellIndex % num_columns];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As far as I know there is no way to do this, but I
I'd like to know if there's a way to access to the class (or
Is there a way to know when the index on uitableview is actually used?
I know there is a way to call Perl routines from C. As shown
I know there's a way, I know I've done it (a long time) before,
Does anyone know is there a way to implement Windows Live ID authentication into
As far as I know there's no way for server-side application to be notified
I wanted to know if there is way to log the mysql queries in
I wish to know is there any way that I can create the threads
I want to know is there any way that I can remove duplicates from

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.