Делаю
for (y=0; y<=document.all.length-1; y++)
{
alert(document.all[y].nodeType);
}
Он говорить что все элементы первого типа (ELEMENT_NODE) ... То есть текстовых элементов нет.
Вот кусок штмл:
<body><span>Привед</span>
<table>
<tr>
<td><input id="radiofile" name="radiobutton" type="radio" value="radiobutton" />Ссылка</td>
<td><input id="radiofile" name="radiobutton" type="radio" value="radiobutton" checked="checked" />Файл</td>
</tr>
</table>
</body>