Hy
ist auch kein Wnder, du benutzt document.all das ist veraltete IE 4.x Syntax.
Dann nehme ich an, du weisst, was ich benutzen soll.
ja, z.b diese Funktion:
///////////////////////////////////////////////////////////
// getById(id [, win])
function getById(id, win)
{
var doc = window.document;
if(win) doc = win.document;
if(typeof id == 'undefined') return null;
var obj = null;
if(document.getElementById) obj = doc.getElementById(id);
else if(document.layers) obj = doc.layers[id];
else if(document.all) obj = doc.all[id];
return obj;
}
Struppi.