How do you calculate the number of <td> elements in a particular <tr>?
I didn't specify id or name to access directly, we have to use the document.getElementsByTagName concept.
|
|
How do you calculate the number of I didn't specify id or name to access directly, we have to use the |
|||
|
|
|
You can use something like the following:
|
||||
|
|
|
bobince has the correct answer. I tried to give him some love, but I am new with a 0 rep. tr.cells.length is the quickest way to get what you want. Now, the assumption is that you already have a reference to the tr. If you don't, at some point you have to have a reference to the table. In the DOM, the table element has an array (actually an HTMLCollection) called rows.
will give you the address of any cell where r = the index of the row and c = the index of the cell within that row. |
||
|
|
|
|
Is an easier way to spell it. |
||
|
|
|
|
If you use the jQuery library, it should be as simple as this.
You can use anything as a selector as you would CSS3
Would be another way to do it. |
||
|
|
|
|
will alert the number of <td>s in each <tr> on the page. |
||
|
|
|
|
document.getElementsByTagName returns an array of elements, so you should be able to do something like this:
|
||
|
|
|
|
Something like
At the end, |
||
|
|