hallo,
nabend
ich hab dann doch noch mal eine frage
wie spreche ich dann einen formularwert an wenn z.b. das formular "f" und der input "i" heißt.
wenn ich es im 2.frame mit "document.f.i.value" versuche kommt die meldung:
"document.f.i.value ist null oder kein objekt"
könntest du mir nochmal einen tipp geben?
ja: document.f.getElementByName("i").value;
schöner ist allerdings:
document.f.getElementById("i").value;
dafür musst du nur <input id="i"> nehmen...
danke
martin
Fabian