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?