Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table that looks like:

<table id="myTable">
    <col id="name" />
    <col id="birthYear" />
    <col id="phone" />
    <td>
        <tr>Joe</tr>
        <tr>1972</tr>
        <tr>202-555-1234</tr>
    </td>
</table>

Is there an easy way to get an array of the <col /> tags? I don't want to use getElementById because I don't know the ids of the col tags, although I will know the Id of the table. I don't want to use getElementsByTagName because there will be several tables in the document with col tags.

I'm not using jquery, just regular javascript.

Any ideas?

share|improve this question

2 Answers

up vote 5 down vote accepted

getElementsByTagName can be used on table with id "myTable" : it will returns all col of this table.

here is an example :

document.getElementById("myTable").getElementsByTagName("col")
share|improve this answer
1  
You mean: colArray=document.getElementById('myTable).getElementsByTagName('col'); ? – Jonathan M Aug 9 '11 at 16:01
Guess we were typing at the same time. :) – Jonathan M Aug 9 '11 at 16:02
lol, yes, I was editing at the same time ;) – Jerome C. Aug 9 '11 at 16:10

Javascript supports XPath:

document.evaluate('//col', document.getElementById('myTable'));
share|improve this answer
1  
Do all browsers support document.evaluate? I thought IE was still lacking? If IE does support this is definitely the way to go!!! – El Guapo Aug 9 '11 at 16:03
I believe IE9 does, and IE8 had buggy support(?), 7 and earlier don't: stackoverflow.com/questions/4681968/… – Marc B Aug 9 '11 at 16:04
IE older than 9 does not support this code.google.com/p/doctype/wiki/DocumentEvaluateMethod – Jacek Kaniuk Aug 9 '11 at 16:06
@Jacek: IE9 is notably absent... – Marc B Aug 9 '11 at 16:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.