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

The Archive Base Latest Questions

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

Possible Duplicate: Retrieve Table Row Index of Current Row <html> <script> function addValue(a) {

  • 0

Possible Duplicate:
Retrieve Table Row Index of Current Row

<html>
 <script>
 function addValue(a) {

      var element1  = document.createElement('tr');
      var element2 = document.createElement('td');
      var text = document.createTextNode(a);
      var table  = document.getElementById('t');
      element2.appendChild(text);
      element1.appendChild(element2);
      table.tBodies(0).appendChild(element1);
    }
</script>
Name: <input type="text" name="a">
<input type="button" value="Add" onClick='javascript:addValue(a.value)'>
<table id="t" border="1">
<tr><th>Employee Name</th></tr>
</table>
</html>

this is my code sample, now when user click on any row how can i get the rowIndex

  • 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-28T17:32:44+00:00Added an answer on May 28, 2026 at 5:32 pm

    I have this function, i created, it works just fine:

    getIndex = function (elem, collection) {
        var index = 0;
        for(var cont = 0; cont < collection.length; cont++){
            if(collection[cont].tagName == elem.tagName)
                index++;            
            if(collection[cont] === elem)
                break;      
        }
        return index - 1;
    }
    

    you use it like:
    first you change a bit in the HTML:

    <input type="button" value="Add" onClick='javascript:addValue(this, a.value)'>
    

    this allows you to know which a has been clicked;
    then, your function:

    function addValue(row, a) {
     var table  = document.getElementById('t');
     var rowIndex = getIndex(row, table);
      ....
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: JavaScript: var functionName = function() {} vs function functionName() {} What's the
Possible Duplicate: How to retrieve the hash for the current commit in Git? I.e.
Possible Duplicate: Retrieving Android API version programmatically I am trying to retrieve the current
Possible Duplicate: Why not use tables for layout in HTML? Under what conditions should
Possible Duplicate: How to parse HTML with PHP? Get MySQL database output via PHP
Possible Duplicate: PHP get all arguments as array? Within a javascript function arguments always
Possible Duplicate: What format is this? How do i retrieve this one. I'm not
Possible Duplicate: How to find out where a function is defined? included php file
Possible Duplicate: Retrieve Windows Experience Rating Using .NET, is there a way to programmatically
Possible Duplicate: What is the most accurate way to retrieve a user's correct IP

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.