Hallo Cybaer,
D.h., wenn man getIDs(document.getElementById('ID1')) anfordert, ermittelt er ja nur die IDs innerhalb des Zweigs "ID1" (also "nextID" und "output" - "ID1" und "lastID" liegen ja außerhalb). Wie ginge das mit all?
So wahrscheinlich:
function getIDs () {
for (i=0; i<document.all.length; i++ ) {
if(document.all[i].id)
alert(document.all[i].id);
}
}
window.onload=getIDs;
Gruß Gernot